Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of SARose

SARose

SARose has asked 14 questions and find answers to 9 problems.

Stats

211
EtPoint
39
Vote count
14
questions
9
answers

About

"We have a bug, in the SARose object"
"What?"
"See for yourself"

public class SARose extends Person {

    private final boolean isAwesome;
    private final boolean isSmart;
    private final boolean isImmortal;

    public SARose() {
        super();
        this.isAwesome = true;
        this.isSmart = true;
        this.isImmortal = false;
    }

}