Made Vector implement Comparable<Vector> instead of Comparable<BlockVector>. Oops

This commit is contained in:
TomyLobo 2012-06-07 12:18:22 +02:00
parent e69ad4d08f
commit 06ed8ecf97

View File

@ -23,7 +23,7 @@ package com.sk89q.worldedit;
* *
* @author sk89q * @author sk89q
*/ */
public class Vector implements Comparable<BlockVector> { public class Vector implements Comparable<Vector> {
protected final double x, y, z; protected final double x, y, z;
/** /**
@ -692,7 +692,7 @@ public class Vector implements Comparable<BlockVector> {
} }
@Override @Override
public int compareTo(BlockVector other) { public int compareTo(Vector other) {
if (y != other.y) return Double.compare(y, other.y); if (y != other.y) return Double.compare(y, other.y);
if (z != other.z) return Double.compare(z, other.z); if (z != other.z) return Double.compare(z, other.z);
if (x != other.x) return Double.compare(x, other.x); if (x != other.x) return Double.compare(x, other.x);