Skip to content

Commit 63670d0

Browse files
author
leelavery
committed
Fix incorrect static statements on point
1 parent c2d302b commit 63670d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/pokegoapi/api/map/Point.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
public class Point {
2323
@Getter
2424
@Setter
25-
private static double longitude;
25+
private double longitude;
2626
@Getter
2727
@Setter
28-
private static double latitude;
28+
private double latitude;
2929

3030
public Point(double latitude, double longitude) {
3131
this.latitude = latitude;

0 commit comments

Comments
 (0)