Fix goofy copyright headers

This commit is contained in:
lax1dude
2025-02-12 21:02:39 -08:00
parent ad900211dd
commit b0a2739fe1
992 changed files with 11591 additions and 10601 deletions

View File

@ -1,12 +1,4 @@
package net.lax1dude.eaglercraft.v1_8.netty;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
/**
/*
* Copyright (c) 2022 lax1dude. All Rights Reserved.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
@ -21,6 +13,15 @@ import java.nio.ByteOrder;
* POSSIBILITY OF SUCH DAMAGE.
*
*/
package net.lax1dude.eaglercraft.v1_8.netty;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
public class ByteBufEaglercraftImpl extends AbstractByteBuf {
private ByteBuffer internal;
@ -251,4 +252,4 @@ public class ByteBufEaglercraftImpl extends AbstractByteBuf {
return new ByteBufEaglercraftImpl(internal.duplicate(), maxCapacity());
}
}
}

View File

@ -1,8 +1,4 @@
package net.lax1dude.eaglercraft.v1_8.netty;
import java.nio.ByteBuffer;
/**
/*
* Copyright (c) 2022 lax1dude. All Rights Reserved.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
@ -17,6 +13,11 @@ import java.nio.ByteBuffer;
* POSSIBILITY OF SUCH DAMAGE.
*
*/
package net.lax1dude.eaglercraft.v1_8.netty;
import java.nio.ByteBuffer;
public class Unpooled {
public static final ByteBuf EMPTY_BUFFER = ByteBuf.allocate(0, 0);
@ -44,4 +45,4 @@ public class Unpooled {
public static ByteBuf wrappedBuffer(ByteBuf buf) {
return buf.duplicate();
}
}
}