diff --git a/src/main/java/baritone/bot/pathing/goals/GoalComposite.java b/src/main/java/baritone/bot/pathing/goals/GoalComposite.java index 1f9d4196..cff145dd 100644 --- a/src/main/java/baritone/bot/pathing/goals/GoalComposite.java +++ b/src/main/java/baritone/bot/pathing/goals/GoalComposite.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.bot.pathing.goals; import java.util.Arrays; diff --git a/src/main/resources/baritone/Baritone.java b/src/main/resources/baritone/Baritone.java index 138e8d55..020db3f6 100644 --- a/src/main/resources/baritone/Baritone.java +++ b/src/main/resources/baritone/Baritone.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone; import baritone.movement.MovementManager; diff --git a/src/main/resources/baritone/mining/MickeyMine.java b/src/main/resources/baritone/mining/MickeyMine.java index d6bb3cf4..ae9222dc 100644 --- a/src/main/resources/baritone/mining/MickeyMine.java +++ b/src/main/resources/baritone/mining/MickeyMine.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.mining; import baritone.Baritone; diff --git a/src/main/resources/baritone/movement/MovementManager.java b/src/main/resources/baritone/movement/MovementManager.java index 1468d18b..704cc929 100644 --- a/src/main/resources/baritone/movement/MovementManager.java +++ b/src/main/resources/baritone/movement/MovementManager.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.movement; import baritone.Baritone; diff --git a/src/main/resources/baritone/pathfinding/Node.java b/src/main/resources/baritone/pathfinding/Node.java index 331234da..63f910b2 100644 --- a/src/main/resources/baritone/pathfinding/Node.java +++ b/src/main/resources/baritone/pathfinding/Node.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.pathfinding; import baritone.pathfinding.goals.Goal; diff --git a/src/main/resources/baritone/pathfinding/Path.java b/src/main/resources/baritone/pathfinding/Path.java index d1e2e583..0f92bb92 100644 --- a/src/main/resources/baritone/pathfinding/Path.java +++ b/src/main/resources/baritone/pathfinding/Path.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.pathfinding; import baritone.Baritone; diff --git a/src/main/resources/baritone/pathfinding/PathFinder.java b/src/main/resources/baritone/pathfinding/PathFinder.java index b0528739..7c17cfe3 100644 --- a/src/main/resources/baritone/pathfinding/PathFinder.java +++ b/src/main/resources/baritone/pathfinding/PathFinder.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.pathfinding; import baritone.pathfinding.goals.Goal; diff --git a/src/main/resources/baritone/pathfinding/actions/Action.java b/src/main/resources/baritone/pathfinding/actions/Action.java index 23ce5285..0b17aa15 100644 --- a/src/main/resources/baritone/pathfinding/actions/Action.java +++ b/src/main/resources/baritone/pathfinding/actions/Action.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.pathfinding.actions; import baritone.Baritone; diff --git a/src/main/resources/baritone/pathfinding/actions/ActionBridge.java b/src/main/resources/baritone/pathfinding/actions/ActionBridge.java index bd52cd66..4159b4a5 100644 --- a/src/main/resources/baritone/pathfinding/actions/ActionBridge.java +++ b/src/main/resources/baritone/pathfinding/actions/ActionBridge.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.pathfinding.actions; import baritone.Baritone; diff --git a/src/main/resources/baritone/pathfinding/actions/ActionClimb.java b/src/main/resources/baritone/pathfinding/actions/ActionClimb.java index 524eeca0..6fbcbe91 100644 --- a/src/main/resources/baritone/pathfinding/actions/ActionClimb.java +++ b/src/main/resources/baritone/pathfinding/actions/ActionClimb.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.pathfinding.actions; import baritone.Baritone; diff --git a/src/main/resources/baritone/pathfinding/actions/ActionDescend.java b/src/main/resources/baritone/pathfinding/actions/ActionDescend.java index 0247bc2b..7d0832c4 100644 --- a/src/main/resources/baritone/pathfinding/actions/ActionDescend.java +++ b/src/main/resources/baritone/pathfinding/actions/ActionDescend.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.pathfinding.actions; import baritone.Baritone; diff --git a/src/main/resources/baritone/pathfinding/actions/ActionDescendThree.java b/src/main/resources/baritone/pathfinding/actions/ActionDescendThree.java index b0a93c7b..4464351e 100644 --- a/src/main/resources/baritone/pathfinding/actions/ActionDescendThree.java +++ b/src/main/resources/baritone/pathfinding/actions/ActionDescendThree.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.pathfinding.actions; import baritone.Baritone; diff --git a/src/main/resources/baritone/pathfinding/actions/ActionDescendTwo.java b/src/main/resources/baritone/pathfinding/actions/ActionDescendTwo.java index 9d256470..a7e16f7c 100644 --- a/src/main/resources/baritone/pathfinding/actions/ActionDescendTwo.java +++ b/src/main/resources/baritone/pathfinding/actions/ActionDescendTwo.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.pathfinding.actions; import baritone.Baritone; diff --git a/src/main/resources/baritone/pathfinding/actions/ActionFall.java b/src/main/resources/baritone/pathfinding/actions/ActionFall.java index 5c54dba0..f5650dff 100644 --- a/src/main/resources/baritone/pathfinding/actions/ActionFall.java +++ b/src/main/resources/baritone/pathfinding/actions/ActionFall.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.pathfinding.actions; import baritone.Baritone; diff --git a/src/main/resources/baritone/pathfinding/actions/ActionPillar.java b/src/main/resources/baritone/pathfinding/actions/ActionPillar.java index 5c751f52..c72956ce 100644 --- a/src/main/resources/baritone/pathfinding/actions/ActionPillar.java +++ b/src/main/resources/baritone/pathfinding/actions/ActionPillar.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.pathfinding.actions; import baritone.Baritone; diff --git a/src/main/resources/baritone/pathfinding/actions/ActionPlaceOrBreak.java b/src/main/resources/baritone/pathfinding/actions/ActionPlaceOrBreak.java index 86251360..37ddc04c 100644 --- a/src/main/resources/baritone/pathfinding/actions/ActionPlaceOrBreak.java +++ b/src/main/resources/baritone/pathfinding/actions/ActionPlaceOrBreak.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.pathfinding.actions; import baritone.Baritone; diff --git a/src/main/resources/baritone/pathfinding/actions/ActionWalkDiagonal.java b/src/main/resources/baritone/pathfinding/actions/ActionWalkDiagonal.java index 1b760c7f..e1897c49 100644 --- a/src/main/resources/baritone/pathfinding/actions/ActionWalkDiagonal.java +++ b/src/main/resources/baritone/pathfinding/actions/ActionWalkDiagonal.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.pathfinding.actions; import java.util.Random; diff --git a/src/main/resources/baritone/schematic/Schematic.java b/src/main/resources/baritone/schematic/Schematic.java index 81d420fa..afb72589 100644 --- a/src/main/resources/baritone/schematic/Schematic.java +++ b/src/main/resources/baritone/schematic/Schematic.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.schematic; import java.util.ArrayList; diff --git a/src/main/resources/baritone/schematic/SchematicBuilder.java b/src/main/resources/baritone/schematic/SchematicBuilder.java index 8a45f893..beb2d65e 100644 --- a/src/main/resources/baritone/schematic/SchematicBuilder.java +++ b/src/main/resources/baritone/schematic/SchematicBuilder.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.schematic; import baritone.Baritone; diff --git a/src/main/resources/baritone/schematic/SchematicLoader.java b/src/main/resources/baritone/schematic/SchematicLoader.java index f8221443..9823d6a7 100644 --- a/src/main/resources/baritone/schematic/SchematicLoader.java +++ b/src/main/resources/baritone/schematic/SchematicLoader.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.schematic; import baritone.util.Out; diff --git a/src/main/resources/baritone/ui/LookManager.java b/src/main/resources/baritone/ui/LookManager.java index c989fbb7..17c9cada 100644 --- a/src/main/resources/baritone/ui/LookManager.java +++ b/src/main/resources/baritone/ui/LookManager.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.ui; import baritone.Baritone; diff --git a/src/main/resources/baritone/ui/PathRenderer.java b/src/main/resources/baritone/ui/PathRenderer.java index a3c426ce..f053e97c 100644 --- a/src/main/resources/baritone/ui/PathRenderer.java +++ b/src/main/resources/baritone/ui/PathRenderer.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.ui; import baritone.Baritone; diff --git a/src/main/resources/baritone/util/Autorun.java b/src/main/resources/baritone/util/Autorun.java index c6464ea6..3d281a60 100644 --- a/src/main/resources/baritone/util/Autorun.java +++ b/src/main/resources/baritone/util/Autorun.java @@ -7,11 +7,6 @@ import java.util.Arrays; import baritone.util.Out; import net.minecraft.client.main.Main; -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ /** * * @author avecowa diff --git a/src/main/resources/baritone/util/BlockPuncher.java b/src/main/resources/baritone/util/BlockPuncher.java index 885b86c1..fcc0c7f2 100644 --- a/src/main/resources/baritone/util/BlockPuncher.java +++ b/src/main/resources/baritone/util/BlockPuncher.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.util; import java.util.ArrayList; diff --git a/src/main/resources/baritone/util/ChatCommand.java b/src/main/resources/baritone/util/ChatCommand.java index 6b918975..6277b92c 100644 --- a/src/main/resources/baritone/util/ChatCommand.java +++ b/src/main/resources/baritone/util/ChatCommand.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.util; import baritone.Baritone; diff --git a/src/main/resources/baritone/util/MCEdit.java b/src/main/resources/baritone/util/MCEdit.java index 90ddc656..007a0db8 100644 --- a/src/main/resources/baritone/util/MCEdit.java +++ b/src/main/resources/baritone/util/MCEdit.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.util; import baritone.Baritone; diff --git a/src/main/resources/baritone/util/Manager.java b/src/main/resources/baritone/util/Manager.java index 8d1ef05f..4e70f274 100644 --- a/src/main/resources/baritone/util/Manager.java +++ b/src/main/resources/baritone/util/Manager.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.util; import java.lang.reflect.InvocationTargetException; diff --git a/src/main/resources/baritone/util/ManagerTick.java b/src/main/resources/baritone/util/ManagerTick.java index f2aebb67..6d8dc673 100644 --- a/src/main/resources/baritone/util/ManagerTick.java +++ b/src/main/resources/baritone/util/ManagerTick.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.util; /** diff --git a/src/main/resources/baritone/util/Memory.java b/src/main/resources/baritone/util/Memory.java index c3a16bfc..62ef08a4 100644 --- a/src/main/resources/baritone/util/Memory.java +++ b/src/main/resources/baritone/util/Memory.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.util; import java.util.ArrayList; diff --git a/src/main/resources/baritone/util/Out.java b/src/main/resources/baritone/util/Out.java index 1a0508a4..bc844178 100644 --- a/src/main/resources/baritone/util/Out.java +++ b/src/main/resources/baritone/util/Out.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.util; import net.minecraft.client.Minecraft; diff --git a/src/main/resources/baritone/util/ToolSet.java b/src/main/resources/baritone/util/ToolSet.java index ac224b2a..bf395f20 100644 --- a/src/main/resources/baritone/util/ToolSet.java +++ b/src/main/resources/baritone/util/ToolSet.java @@ -1,8 +1,3 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ package baritone.util; import java.util.ArrayList;