mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-16 12:43:52 -07:00
Cleaned up CraftBukkit comments in NMS.
Added newlines at the end of files Fixed improper line endings on some files Matched start - end comments Added some missing comments for diffs Fixed syntax on some spots Minimized some diff Removed some no longer used files Added comment on some required files with no changes Fixed imports of items used once Added imports for items used more than once
This commit is contained in:
@@ -7,6 +7,8 @@ import java.util.Properties;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
import joptsimple.OptionSet; // CraftBukkit
|
||||
|
||||
public class PropertyManager {
|
||||
|
||||
public static Logger a = Logger.getLogger("Minecraft");
|
||||
@@ -29,9 +31,9 @@ public class PropertyManager {
|
||||
}
|
||||
|
||||
// CraftBukkit start
|
||||
private joptsimple.OptionSet options = null;
|
||||
private OptionSet options = null;
|
||||
|
||||
public PropertyManager(final joptsimple.OptionSet options) {
|
||||
public PropertyManager(final OptionSet options) {
|
||||
this((File) options.valueOf("config"));
|
||||
|
||||
this.options = options;
|
||||
|
Reference in New Issue
Block a user