Skip to content

Commit

Permalink
Fixed some name issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Fedin committed Dec 4, 2016
1 parent 93de8c2 commit 3b21921
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/mregioneer/mcaliases/Vector.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public int getZend() {
}


public List<Point3d> getCoordinatesArray() {
public List<Point3d> getCuboidPoints() {

int height = getZend() - getZstart() + 1;
int width = getXend() - getXstart() + 1;
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/TestVector.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ public void testAdd() {

Vector vector = new Vector(cords1, cords2);

List arr = vector.getCoordinatesArray();
List arr = vector.getCuboidPoints();
}
}

0 comments on commit 3b21921

Please sign in to comment.