runelite-client: build on java 8 again
in java >=9 the type rules for <? extends ?> have changed from <Object> to <?> so this compiled correctly, where on java 8 it is invalid
This commit is contained in:
@@ -1151,7 +1151,7 @@ public class ConfigManager
|
||||
});
|
||||
}
|
||||
|
||||
Set<String> keys = (Set<String>) ImmutableSet.copyOf((Set<?>) properties.keySet());
|
||||
Set<String> keys = (Set<String>) ImmutableSet.copyOf((Set) properties.keySet());
|
||||
keys:
|
||||
for (String key : keys)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user