tterrag1098 / BON2

A rewrite for Immibis's bearded-octo-nemesis for ForgeGradle
GNU Lesser General Public License v3.0
182 stars 50 forks source link

Fix unchecked warnings in RefreshListener #27

Closed elifoster closed 8 years ago

elifoster commented 8 years ago

This removes a noinspection and cleans up the build log a little bit. It doesn't need to be unchecked because we know that BONUtils#buildValidMappings always returns a List<String>, and those values are the only thing ever added to this JComboBox.

elifoster commented 8 years ago

It looks like this was resolved by someone at some point, and even uses specific mapping version objects instead of ugly old strings. That //noinspection unchecked can get removed from RefreshListener, I'm pretty sure.