This commit is contained in:
DBotThePony 2023-02-06 17:21:28 +07:00
parent 15abdba2c5
commit f94e6f2f72
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -389,7 +389,9 @@ class Starbound : ISBFileLocator {
t: Object2ObjectOpenHashMap<String, ArrayList<IStarboundFile>>,
u: Object2ObjectOpenHashMap<String, ArrayList<IStarboundFile>>
): Object2ObjectOpenHashMap<String, ArrayList<IStarboundFile>> {
t.putAll(u)
for ((k, v) in u)
t.computeIfAbsent(k, Object2ObjectFunction { ArrayList() }).addAll(v)
return t
}