mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-24 08:43:49 -07:00
Fixed LongHashtable.values()
This commit is contained in:
@@ -82,7 +82,7 @@ public class LongHashtable<V> extends LongHash {
|
||||
if(inner == null) continue;
|
||||
for(Object entry : inner) {
|
||||
if(entry == null) break;
|
||||
ret.add((V)entry);
|
||||
ret.add((V)((Entry)entry).value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user