Made DataContainer#putAll(Map<Key, Supplier>) private

This commit is contained in:
Rsl1122 2019-02-06 15:46:15 +02:00
parent 8a34a04f04
commit 9520d20c3e

View File

@ -131,7 +131,7 @@ public class DataContainer {
return formatter.apply(value);
}
public void putAll(Map<Key, Supplier> toPut) {
private void putAll(Map<Key, Supplier> toPut) {
map.putAll(toPut);
}