glu: Remove unused Util.IntValue inner class

This commit is contained in:
Elias Naur 2006-07-17 23:27:29 +00:00
parent 4081364fa3
commit ccc6b7ba66
1 changed files with 0 additions and 20 deletions

View File

@ -68,24 +68,4 @@ public final class Util {
GL11.glGetInteger(gl_enum, int_buffer);
return int_buffer.get(0);
}
/** Handy mutable integer value class */
static final class IntValue {
int value;
IntValue(int value) {
this.value = value;
}
public boolean equals(Object obj) {
return ((IntValue)obj).value == value;
}
public int hashCode() {
return value;
}
}
}