Removed some shorthand methods

This commit is contained in:
Willem Cazander 2022-02-11 13:48:24 +01:00
parent 3f72438b58
commit b52cc50c45
3 changed files with 9 additions and 12 deletions

View file

@ -1,7 +1,6 @@
package love.distributedrebirth.numberxd.base2t.part;
import java.util.Map;
import java.util.stream.Collectors;
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
import love.distributedrebirth.bassboonyd.BãßBȍőnCoffinOpenʸᴰ;
@ -39,7 +38,7 @@ public interface BãßBȍőnPartʸᴰ<T extends BãßBȍőnPartʸᴰ<T>> extends
default T BãßValueOfDialTone(String identifierTone) {
Map<String,Object> mapTone = GET_BBC().GET_MAP_OBJ(BãßBȍőnPartKeyʸᴰ.MAP_TONE);
if (mapTone.isEmpty()) {
mapTone.putAll(BãßInstancesStream().collect(Collectors.toMap(v -> v.BȍőnDialTone(), v -> v)));
mapTone.putAll(BãßInstancesToMap(v -> v.BȍőnDialTone()));
}
return (T) mapTone.get(identifierTone);
}
@ -48,7 +47,7 @@ public interface BãßBȍőnPartʸᴰ<T extends BãßBȍőnPartʸᴰ<T>> extends
default T BãßValueOfChinaKey(String chinaKey) {
Map<String,Object> mapChina = GET_BBC().GET_MAP_OBJ(BãßBȍőnPartKeyʸᴰ.MAP_CHINA);
if (mapChina.isEmpty()) {
mapChina.putAll(BãßInstancesStream().collect(Collectors.toMap(v -> v.BȍőnChinaKey(), v -> v)));
mapChina.putAll(BãßInstancesToMap(v -> v.BȍőnChinaKey()));
}
return (T) mapChina.get(chinaKey);
}