Advertisement
Guest User

Untitled

a guest
Apr 1st, 2020
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.47 KB | None | 0 0
  1.    
  2.             CatNode curr = this;
  3.            
  4.             if ((curr.senior.data.furThickness > curr.data.furThickness) && (curr.senior != null)) {
  5.                 return curr.senior.fluffiest();  
  6.             }
  7.            
  8.             else if ((curr.junior.data.furThickness > curr.data.furThickness) && (curr.junior != null)){
  9.                 return curr.junior.fluffiest();
  10.             }
  11.                
  12.             else {
  13.                 return curr.data.furThickness;
  14.             }    
  15.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement