public constructor

This commit is contained in:
Hannes Janetzek
2013-06-21 09:49:15 +02:00
parent 1e7a1d4f2f
commit 07c58f6853

View File

@@ -24,7 +24,7 @@ public class PointF {
public PointF() {
}
PointF(float x, float y) {
public PointF(float x, float y) {
this.x = x;
this.y = y;
}