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