Minor cleanup - pom and encryption package

This commit is contained in:
P0nk
2021-07-18 16:05:34 +02:00
parent 5f149f0a27
commit 850d44d549
4 changed files with 14 additions and 14 deletions

View File

@@ -19,7 +19,7 @@
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net;
package net.encryption;
public class MapleCustomEncryption {
private static byte rollLeft(byte in, int count) {

View File

@@ -4,7 +4,6 @@ import io.netty.buffer.ByteBuf;
import io.netty.buffer.Unpooled;
import io.netty.channel.ChannelHandlerContext;
import io.netty.handler.codec.ReplayingDecoder;
import net.MapleCustomEncryption;
import net.netty.InvalidPacketHeaderException;
import net.packet.ByteBufInPacket;

View File

@@ -3,7 +3,6 @@ package net.encryption;
import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;
import io.netty.handler.codec.MessageToByteEncoder;
import net.MapleCustomEncryption;
import net.packet.OutPacket;
public class PacketEncoder extends MessageToByteEncoder<OutPacket> {