Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
don-vip committed Sep 16, 2018
1 parent 42a0f14 commit 6ffbf77
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
/bin/
/javadoc/
/build/
4 changes: 2 additions & 2 deletions src/nl/jeroenhoek/josm/gridify/ui/Preview.java
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,8 @@ private List<Coordinates> range(Coordinates a, Coordinates b, int n) {

for (int i = 1; i < n; i++) {
Coordinates between = new Coordinates();
between.x = a.x + (Math.round(dx * i));
between.y = a.y + (Math.round(dy * i));
between.x = a.x + Math.round(dx * i);
between.y = a.y + Math.round(dy * i);
points.add(between);
}
}
Expand Down

0 comments on commit 6ffbf77

Please sign in to comment.