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