Adjust to yangtools-2.0.0 changes
[controller.git] / opendaylight / config / config-manager-facade-xml / src / main / java / org / opendaylight / controller / config / facade / xml / util / Util.java
index deb2ffaa5153cde07b8bfb9dd140d2fd8073e8c3..d704d63037b1fe5874dbf1fb5f95dc013621ed7e 100644 (file)
@@ -8,25 +8,15 @@
 
 package org.opendaylight.controller.config.facade.xml.util;
 
-import static org.opendaylight.yangtools.yang.common.SimpleDateFormatUtil.getRevisionFormat;
-
 import com.google.common.base.Preconditions;
-import java.text.ParseException;
-import java.util.Date;
 
 public final class Util {
 
-    public static String writeDate(final Date date) {
-        return getRevisionFormat().format(date);
-    }
-
-    public static Date readDate(final String s) throws ParseException {
-        return getRevisionFormat().parse(s);
+    private Util() {
     }
 
     public static void checkType(final Object value, final Class<?> clazz) {
-        Preconditions.checkArgument(clazz.isAssignableFrom(value.getClass()), "Unexpected type " + value.getClass()
-                + " should be " + clazz + " of " + value);
+        Preconditions.checkArgument(clazz.isAssignableFrom(value.getClass()),
+                "Unexpected type " + value.getClass() + " should be " + clazz + " of " + value);
     }
-
 }