diff options
| author | shedaniel <daniel@shedaniel.me> | 2020-09-28 20:15:03 +0800 |
|---|---|---|
| committer | shedaniel <daniel@shedaniel.me> | 2020-09-28 20:15:03 +0800 |
| commit | f2a4b2ada18bfd698525f64c27eddf31f1d67ddd (patch) | |
| tree | 3dc0434aa0e515ea86fc0762656761492448ff26 /RoughlyEnoughItems-runtime/src/main/java/me | |
| parent | 01e125963b51864459a612766be6d58c7d1fe364 (diff) | |
| download | RoughlyEnoughItems-f2a4b2ada18bfd698525f64c27eddf31f1d67ddd.tar.gz RoughlyEnoughItems-f2a4b2ada18bfd698525f64c27eddf31f1d67ddd.tar.bz2 RoughlyEnoughItems-f2a4b2ada18bfd698525f64c27eddf31f1d67ddd.zip | |
Fix #416
Signed-off-by: shedaniel <daniel@shedaniel.me>
Diffstat (limited to 'RoughlyEnoughItems-runtime/src/main/java/me')
| -rw-r--r-- | RoughlyEnoughItems-runtime/src/main/java/me/shedaniel/rei/impl/AbstractEntryStack.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/RoughlyEnoughItems-runtime/src/main/java/me/shedaniel/rei/impl/AbstractEntryStack.java b/RoughlyEnoughItems-runtime/src/main/java/me/shedaniel/rei/impl/AbstractEntryStack.java index 2f182ab35..fcc256adc 100644 --- a/RoughlyEnoughItems-runtime/src/main/java/me/shedaniel/rei/impl/AbstractEntryStack.java +++ b/RoughlyEnoughItems-runtime/src/main/java/me/shedaniel/rei/impl/AbstractEntryStack.java @@ -47,7 +47,7 @@ public abstract class AbstractEntryStack extends GuiComponent implements EntrySt return this; } else { Short2ObjectMap<Object> singletonSettings = this.settings; - this.settings = new Short2ObjectOpenHashMap<>(4, 1); + this.settings = new Short2ObjectOpenHashMap<>(2); this.settings.putAll(singletonSettings); } } |
