Remove timestamps from since annotations

This commit is contained in:
Brady 2018-11-13 21:53:27 -06:00
parent f9270a7ed0
commit 3ccb0c74c6
No known key found for this signature in database
GPG Key ID: 73A788379A197567
33 changed files with 33 additions and 33 deletions

View File

@ -22,7 +22,7 @@ import net.minecraft.util.math.BlockPos;
/**
* @author Brady
* @since 8/4/2018 2:01 AM
* @since 8/4/2018
*/
public interface IBlockTypeAccess {

View File

@ -22,7 +22,7 @@ import net.minecraft.client.entity.EntityPlayerSP;
/**
* @author Brady
* @since 8/1/2018 6:39 PM
* @since 8/1/2018
*/
public final class ChatEvent extends ManagedPlayerEvent.Cancellable {

View File

@ -21,7 +21,7 @@ import baritone.api.event.events.type.EventState;
/**
* @author Brady
* @since 8/2/2018 12:32 AM
* @since 8/2/2018
*/
public final class ChunkEvent {

View File

@ -23,7 +23,7 @@ import net.minecraft.network.Packet;
/**
* @author Brady
* @since 8/6/2018 9:31 PM
* @since 8/6/2018
*/
public final class PacketEvent {

View File

@ -19,7 +19,7 @@ package baritone.api.event.events;
/**
* @author Brady
* @since 8/5/2018 12:28 AM
* @since 8/5/2018
*/
public final class RenderEvent {

View File

@ -22,7 +22,7 @@ import net.minecraft.client.multiplayer.WorldClient;
/**
* @author Brady
* @since 8/4/2018 3:13 AM
* @since 8/4/2018
*/
public final class WorldEvent {

View File

@ -19,7 +19,7 @@ package baritone.api.event.events.type;
/**
* @author Brady
* @since 8/1/2018 6:41 PM
* @since 8/1/2018
*/
public class Cancellable implements ICancellable {

View File

@ -19,7 +19,7 @@ package baritone.api.event.events.type;
/**
* @author Brady
* @since 8/2/2018 12:34 AM
* @since 8/2/2018
*/
public enum EventState {

View File

@ -26,7 +26,7 @@ import baritone.api.event.events.*;
*
* @author Brady
* @see IGameEventListener
* @since 8/1/2018 6:29 PM
* @since 8/1/2018
*/
public interface AbstractGameEventListener extends IGameEventListener {

View File

@ -33,7 +33,7 @@ import net.minecraft.util.text.ITextComponent;
/**
* @author Brady
* @since 7/31/2018 11:05 PM
* @since 7/31/2018
*/
public interface IGameEventListener {

View File

@ -29,7 +29,7 @@ import java.util.List;
/**
* @author Brady
* @since 7/31/2018 9:59 PM
* @since 7/31/2018
*/
public class BaritoneTweaker extends SimpleTweaker {

View File

@ -32,7 +32,7 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
/**
* @author Brady
* @since 8/1/2018 5:06 PM
* @since 8/1/2018
*/
@Mixin(EntityPlayerSP.class)
public class MixinEntityPlayerSP {

View File

@ -26,7 +26,7 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;
/**
* @author Brady
* @since 7/31/2018 11:44 PM
* @since 7/31/2018
*/
@Mixin(KeyBinding.class)
public class MixinKeyBinding {

View File

@ -42,7 +42,7 @@ import org.spongepowered.asm.mixin.injection.callback.LocalCapture;
/**
* @author Brady
* @since 7/31/2018 10:51 PM
* @since 7/31/2018
*/
@Mixin(Minecraft.class)
public class MixinMinecraft {

View File

@ -30,7 +30,7 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
/**
* @author Brady
* @since 8/3/2018 12:54 AM
* @since 8/3/2018
*/
@Mixin(NetHandlerPlayClient.class)
public class MixinNetHandlerPlayClient {

View File

@ -36,7 +36,7 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
/**
* @author Brady
* @since 8/6/2018 9:30 PM
* @since 8/6/2018
*/
@Mixin(NetworkManager.class)
public class MixinNetworkManager {

View File

@ -28,7 +28,7 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
/**
* @author Brady
* @since 8/2/2018 12:41 AM
* @since 8/2/2018
*/
@Mixin(WorldClient.class)
public class MixinWorldClient {

View File

@ -52,7 +52,7 @@ import java.util.concurrent.TimeUnit;
/**
* @author Brady
* @since 7/31/2018 10:50 PM
* @since 7/31/2018
*/
public enum Baritone implements IBaritone {

View File

@ -25,7 +25,7 @@ import baritone.api.utils.IPlayerContext;
* A type of game event listener that is given {@link Baritone} instance context.
*
* @author Brady
* @since 8/1/2018 6:29 PM
* @since 8/1/2018
*/
public class Behavior implements IBehavior {

View File

@ -42,7 +42,7 @@ import java.util.*;
/**
* @author Brady
* @since 8/6/2018 9:47 PM
* @since 8/6/2018
*/
public final class MemoryBehavior extends Behavior implements IMemoryBehavior {

View File

@ -27,7 +27,7 @@ import java.util.*;
/**
* @author Brady
* @since 8/3/2018 1:04 AM
* @since 8/3/2018
*/
public final class CachedChunk {

View File

@ -32,7 +32,7 @@ import java.util.zip.GZIPOutputStream;
/**
* @author Brady
* @since 8/3/2018 9:35 PM
* @since 8/3/2018
*/
public final class CachedRegion implements ICachedRegion {

View File

@ -35,7 +35,7 @@ import java.util.concurrent.LinkedBlockingQueue;
/**
* @author Brady
* @since 8/4/2018 12:02 AM
* @since 8/4/2018
*/
public final class CachedWorld implements ICachedWorld, Helper {

View File

@ -35,7 +35,7 @@ import java.util.*;
/**
* @author Brady
* @since 8/3/2018 1:09 AM
* @since 8/3/2018
*/
public final class ChunkPacker {

View File

@ -36,7 +36,7 @@ import java.util.function.Consumer;
/**
* @author Brady
* @since 8/4/2018 11:06 AM
* @since 8/4/2018
*/
public class WorldProvider implements IWorldProvider, Helper {

View File

@ -30,7 +30,7 @@ import java.util.List;
/**
* @author Brady
* @since 7/31/2018 11:04 PM
* @since 7/31/2018
*/
public final class GameEventHandler implements IGameEventListener, Helper {

View File

@ -36,7 +36,7 @@ import net.minecraft.world.World;
/**
* @author Brady
* @since 8/7/2018 4:30 PM
* @since 8/7/2018
*/
public class CalculationContext {

View File

@ -25,7 +25,7 @@ import net.minecraft.util.text.TextFormatting;
/**
* @author Brady
* @since 8/1/2018 12:18 AM
* @since 8/1/2018
*/
public interface Helper {

View File

@ -34,7 +34,7 @@ import java.util.Map;
* physically forcing down the assigned key.
*
* @author Brady
* @since 7/31/2018 11:20 PM
* @since 7/31/2018
*/
public final class InputOverrideHandler extends Behavior implements IInputOverrideHandler {

View File

@ -51,7 +51,7 @@ import static org.lwjgl.opengl.GL11.*;
/**
* @author Brady
* @since 8/9/2018 4:39 PM
* @since 8/9/2018
*/
public final class PathRenderer implements Helper {

View File

@ -24,7 +24,7 @@ import java.io.File;
/**
* @author Brady
* @see WorldProvider
* @since 8/4/2018 11:36 AM
* @since 8/4/2018
*/
public interface IAnvilChunkLoader {

View File

@ -23,7 +23,7 @@ import net.minecraft.world.chunk.storage.IChunkLoader;
/**
* @author Brady
* @see WorldProvider
* @since 8/4/2018 11:33 AM
* @since 8/4/2018
*/
public interface IChunkProviderServer {

View File

@ -19,7 +19,7 @@ package baritone.utils.pathing;
/**
* @author Brady
* @since 8/4/2018 1:11 AM
* @since 8/4/2018
*/
public enum PathingBlockType {