mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-13 11:18:23 +01:00
Fixed LongHashtable.values()
This commit is contained in:
parent
18efbd82b6
commit
814c9d444f
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue