hiteshsuthar / rokon

Automatically exported from code.google.com/p/rokon
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

No necessary affectation in class Window? #102

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Constructor Window :

public Window(float x, float y, float width, float height) {
        super(x, y, width, height);
        setXY(x, y);
        this.width = width;
        this.height = height;
    }

Do we need to (re)set values after call of super()?

Max

Original issue reported on code.google.com by war...@gmail.com on 8 Jul 2010 at 10:44

GoogleCodeExporter commented 8 years ago
No, that's a bit silly, thanks.

Original comment by rtaylor205@gmail.com on 9 Jul 2010 at 10:35