Removed legacy code that wasn't being used.
[openflowjava.git] / third-party / openflow-codec / src / main / java / org / openflow / codec / util / U8.java
diff --git a/third-party/openflow-codec/src/main/java/org/openflow/codec/util/U8.java b/third-party/openflow-codec/src/main/java/org/openflow/codec/util/U8.java
deleted file mode 100644 (file)
index ab6cf79..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-package org.openflow.codec.util;
-
-public class U8 {
-    public static short f(byte i) {
-        return (short) ((short) i & 0xff);
-    }
-
-    public static byte t(short l) {
-        return (byte) l;
-    }
-}