diff --git a/src/main/java/baritone/bot/pathing/goals/GoalComposite.java b/src/main/java/baritone/bot/pathing/goals/GoalComposite.java index 1f9d41965..cff145dd4 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 138e8d551..020db3f62 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 d6bb3cf46..ae9222dc3 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 1468d18b6..704cc9291 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 331234da0..63f910b21 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 d1e2e5839..0f92bb924 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 b0528739f..7c17cfe36 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 23ce5285d..0b17aa15d 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 bd52cd66f..4159b4a55 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 524eeca0a..6fbcbe914 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 0247bc2bd..7d0832c47 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 b0a93c7b4..4464351e9 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 9d2564708..a7e16f7c5 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 5c54dba06..f5650dffe 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 5c751f520..c72956ce5 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 86251360f..37ddc04cd 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 1b760c7f9..e1897c493 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 81d420fae..afb72589c 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 8a45f893c..beb2d65ee 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 f82214433..9823d6a7c 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 c989fbb7e..17c9cadae 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 a3c426ce4..f053e97c5 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 c6464ea64..3d281a607 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 885b86c18..fcc0c7f23 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 6b9189756..6277b92cd 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 90ddc656e..007a0db8f 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 8d1ef05fd..4e70f2740 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 f2aebb67e..6d8dc673d 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 c3a16bfc1..62ef08a4d 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 1a0508a4c..bc8441786 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 ac224b2af..bf395f203 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;