diff --git a/src/dorkbox/network/connection/connectionType/ConnectionProperties.java b/src/dorkbox/network/connection/connectionType/ConnectionProperties.java deleted file mode 100644 index 95a45785..00000000 --- a/src/dorkbox/network/connection/connectionType/ConnectionProperties.java +++ /dev/null @@ -1,35 +0,0 @@ -package dorkbox.network.connection.connectionType; - -import dorkbox.network.handshake.UpgradeType; - -/** - * Used in {@link IpConnectionTypeRule} to decide what kind of connection a matching IP Address should have. - */ -public enum ConnectionProperties { - /** - * No compression, no encryption - */ - NOTHING(UpgradeType.NONE), - - /** - * Only compression - */ - COMPRESS(UpgradeType.COMPRESS), - - /** - * Compression + encryption - */ - COMPRESS_AND_ENCRYPT(UpgradeType.ENCRYPT) - ; - - private final byte type; - - ConnectionProperties(byte type) { - this.type = type; - } - - public - byte getType() { - return type; - } -}