Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of SARose

SARose

SARose has asked 15 questions and find answers to 10 problems.

Stats

233
EtPoint
43
Vote count
15
questions
10
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;
    }

}