not used and not publicly exposed

This commit is contained in:
Leijurv 2018-11-05 14:43:57 -08:00
parent 8aa5a6756a
commit cb153e039b
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A

View File

@ -82,11 +82,6 @@ public enum Baritone implements IBaritone {
private PathingControlManager pathingControlManager; private PathingControlManager pathingControlManager;
/**
* Whether or not Baritone is active
*/
private boolean active;
Baritone() { Baritone() {
this.gameEventHandler = new GameEventHandler(); this.gameEventHandler = new GameEventHandler();
} }
@ -126,7 +121,6 @@ public enum Baritone implements IBaritone {
} catch (IOException ignored) {} } catch (IOException ignored) {}
} }
this.active = true;
this.initialized = true; this.initialized = true;
} }
@ -209,10 +203,6 @@ public enum Baritone implements IBaritone {
this.gameEventHandler.registerEventListener(listener); this.gameEventHandler.registerEventListener(listener);
} }
public boolean isActive() {
return this.active;
}
public Settings getSettings() { public Settings getSettings() {
return this.settings; return this.settings;
} }