We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1af32f7 commit 271e73fCopy full SHA for 271e73f
src/main/java/discUtils/registry/Bin.java
@@ -103,7 +103,7 @@ public void freeCell(int index) {
103
}
104
// If there's a free cell after this one, combine
105
if (i < freeCells.size() && freeCells.get(i).getOffset() == freeIndex + len) {
106
- len += freeCells.get(i).getCount();
+ len += (int) freeCells.get(i).getCount();
107
freeCells.remove(i);
108
109
0 commit comments