Skip to content

Commit

Permalink
Fix javac nagging
Browse files Browse the repository at this point in the history
  • Loading branch information
xxDark committed Apr 27, 2024
1 parent 2ffd5f8 commit 51902e9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions recaf-ui/src/main/java/software/coley/recaf/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
import software.coley.recaf.launch.LaunchArguments;
import software.coley.recaf.launch.LaunchCommand;
import software.coley.recaf.launch.LaunchHandler;
import software.coley.recaf.plugin.Plugin;
import software.coley.recaf.plugin.PluginContainer;
import software.coley.recaf.services.file.RecafDirectoriesConfig;
import software.coley.recaf.services.plugin.PluginManager;
Expand Down Expand Up @@ -181,7 +180,7 @@ private static void initPlugins() {
PluginManager pluginManager = recaf.get(PluginManager.class);

// Log the discovered plugins
Collection<PluginContainer<? extends Plugin>> plugins = pluginManager.getPlugins();
Collection<PluginContainer<?>> plugins = pluginManager.getPlugins();
if (plugins.isEmpty()) {
logger.info("Initialization: No plugins found");
} else {
Expand Down

0 comments on commit 51902e9

Please sign in to comment.