mirror of
https://github.com/ProjectSWGCore/pswgcommon.git
synced 2026-01-15 23:04:19 -05:00
Added better types to CustomizationString.kt
This commit is contained in:
@@ -72,8 +72,8 @@ class CustomizationString : Encodable, MongoPersistable {
|
||||
return _variables[name]
|
||||
}
|
||||
|
||||
fun forEach(consumer: BiConsumer<in String?, in Int?>?) {
|
||||
_variables.forEach(consumer!!)
|
||||
fun forEach(consumer: BiConsumer<in String, in Int>) {
|
||||
_variables.forEach(consumer)
|
||||
}
|
||||
|
||||
fun clear() {
|
||||
|
||||
Reference in New Issue
Block a user