Merge 1.16 into 1.18
This commit is contained in:
commit
2ff09ef382
|
|
@ -29,6 +29,8 @@ public class CanonizingStringMap<T> extends HashMap<String, T> {
|
|||
|
||||
@Override
|
||||
public void putAll(Map<? extends String, ? extends T> m) {
|
||||
if(m.isEmpty())
|
||||
return;
|
||||
HashMap<String, T> tmp = new HashMap<>();
|
||||
m.forEach((k, v) -> tmp.put(intern(k), v));
|
||||
super.putAll(tmp);
|
||||
|
|
|
|||
|
|
@ -9,7 +9,9 @@ pluginManagement {
|
|||
|
||||
include("test_agent")
|
||||
include("common")
|
||||
include("fabric")
|
||||
include("forge")
|
||||
|
||||
getProperty("enabled_platforms").tokenize(',').each { it ->
|
||||
include(it.trim())
|
||||
}
|
||||
|
||||
rootProject.name = 'modernfix'
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user