Skip to content

Commit

Permalink
Clean up some imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Boerman committed Feb 12, 2024
1 parent e1da717 commit 0858e7d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@
import java.util.Enumeration;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public void registerEventHandler(
//TODO this is currently not called. when should this be called? should it be called at all?
}
};

public ScalaPluginBootstrapContext(File pluginJarFile, ScalaPluginDescription description) {
super(pluginJarFile, description);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package xyz.janboerman.scalaloader.paper.plugin.description;

import org.bukkit.Bukkit;
import org.bukkit.plugin.java.JavaPlugin;
import xyz.janboerman.scalaloader.ScalaRelease;
import xyz.janboerman.scalaloader.compat.IScalaPlugin;
Expand All @@ -18,6 +17,8 @@ public class DescriptionPlugin extends JavaPlugin implements IScalaPlugin {
private final ScalaPluginDescription description;
private final Logger logger;

// TODO note: it should still be safe to register to plugin lifecycle events in a ScalaPlugin's constructor body.

protected DescriptionPlugin(ScalaPluginDescription description) {
this.description = description;
this.logger = new ScalaPluginLogger(this);
Expand Down

0 comments on commit 0858e7d

Please sign in to comment.