public constructor

This commit is contained in:
Hannes Janetzek
2013-10-09 01:56:07 +02:00
parent 1e7a1d4f2f
commit 07c58f6853
+1 -1
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;
}