Fix checkstyle warnings in netconf-cli
[controller.git] / third-party / openflowj / src / main / java / org / openflow / util / U16.java
1 package org.openflow.util;
2
3 public class U16 {
4     public static int f(short i) {
5         return (int)i & 0xffff;
6     }
7
8     public static short t(int l) {
9         return (short) l;
10     }
11 }