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:
Max Weber
2020-11-27 04:37:15 -07:00
parent f6a5463a57
commit 58136ff07b

View File

@@ -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)
{