Merge "Bug 2347: DOMConcurrentDataCommitCoordinator uses wrong phase name"
[controller.git] / third-party / openflowj / src / main / java / org / openflow / util / U32.java
1 package org.openflow.util;
2
3 public class U32 {
4     public static long f(int i) {
5         return (long)i & 0xffffffffL;
6     }
7
8     public static int t(long l) {
9         return (int) l;
10     }
11 }