X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=third-party%2Fopenflow-codec%2Fsrc%2Fmain%2Fjava%2Forg%2Fopenflow%2Fcodec%2Futil%2FU16.java;fp=third-party%2Fopenflow-codec%2Fsrc%2Fmain%2Fjava%2Forg%2Fopenflow%2Fcodec%2Futil%2FU16.java;h=0000000000000000000000000000000000000000;hb=64fe0fbca1a6c2b77ad25f568d73a7eb64236d16;hp=28e7bdbd6b4b0103929bc7770a7a1010d797d469;hpb=8b9a3ff2bbc83941254b46b818cbbae5cc1a3a5b;p=openflowjava.git 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 index 28e7bdbd..00000000 --- a/third-party/openflow-codec/src/main/java/org/openflow/codec/util/U16.java +++ /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; - } -}