Не понимаю почему не проходит последнее условие.
package com.javarush.task.task05.task0502;
/*
Реализовать метод fight
*/
public class Cat {
public int age;
public int weight;
public int strength;
public Cat() {
}
public boolean fight(Cat anotherCat) {
Cat cat = new Cat();
if ((this.age > anotherCat.age) || (this.weight > anotherCat.weight) || (this.strength > anotherCat.strength))
{return true;}
else if ((this.age == anotherCat.age) && (this.weight == anotherCat.weight) && (this.strength == anotherCat.strength))
{return false;}
else {return false;}
}
public static void main(String[] args) {
}
}