Skip to content

Commit

Permalink
Fix test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
lbooker42 committed Jan 24, 2025
1 parent 15188b8 commit 7a2fbaa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/java/io/deephaven/hash/KeyedDoubleTestObject.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public String toString() {
}

public static final KeyedDoubleObjectKey<KeyedDoubleTestObject> keyDef =
new KeyedDoubleObjectKey<>() {
new KeyedDoubleObjectKey<KeyedDoubleTestObject>() {
public Double getKey(KeyedDoubleTestObject v) {
return v.getId();
}
Expand Down Expand Up @@ -64,7 +64,7 @@ public boolean equalDoubleKey(double k, KeyedDoubleTestObject v) {
};

public static final KeyedIntObjectHash.ValueFactory<KeyedDoubleTestObject> factory =
new KeyedIntObjectHash.ValueFactory<>() {
new KeyedIntObjectHash.ValueFactory<KeyedDoubleTestObject>() {
public KeyedDoubleTestObject newValue(Integer key) {
return new KeyedDoubleTestObject(key);
}
Expand All @@ -79,7 +79,7 @@ public KeyedDoubleTestObject newValue(int key) {
private KeyedDoubleTestObject next;

public static final IntrusiveChainedHashAdapter<KeyedDoubleTestObject> adapter =
new IntrusiveChainedHashAdapter<>() {
new IntrusiveChainedHashAdapter<KeyedDoubleTestObject>() {
@Override
public KeyedDoubleTestObject getNext(KeyedDoubleTestObject self) {
return self.next;
Expand Down

0 comments on commit 7a2fbaa

Please sign in to comment.