mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 06:37:19 -04:00
parent
c741c836a7
commit
e3b294cd0b
1 changed files with 2 additions and 2 deletions
|
@ -8,8 +8,8 @@ import org.jruby.runtime.builtin.IRubyObject;
|
|||
|
||||
public final class ConvertedMap extends HashMap<String, Object> {
|
||||
|
||||
public ConvertedMap(final int size) {
|
||||
super(size);
|
||||
private ConvertedMap(final int size) {
|
||||
super((size << 2) / 3 + 2);
|
||||
}
|
||||
|
||||
public static ConvertedMap newFromMap(Map<Serializable, Object> o) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue