Bug 1254 - removed unused utility class 17/11917/2
authorMartin Bobak <mbobak@cisco.com>
Mon, 13 Oct 2014 07:13:01 +0000 (09:13 +0200)
committermichal rehak <mirehak@cisco.com>
Mon, 13 Oct 2014 08:51:02 +0000 (08:51 +0000)
Change-Id: Iebcf340c09061251026a6357719d383de599c4d1
Signed-off-by: Martin Bobak <mbobak@cisco.com>
extension/openflowplugin-extension-api/src/main/java/org/opendaylight/openflowplugin/extension/api/path/Util.java [deleted file]

diff --git a/extension/openflowplugin-extension-api/src/main/java/org/opendaylight/openflowplugin/extension/api/path/Util.java b/extension/openflowplugin-extension-api/src/main/java/org/opendaylight/openflowplugin/extension/api/path/Util.java
deleted file mode 100644 (file)
index deb66d6..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-/**
- * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
- * 
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-package org.opendaylight.openflowplugin.extension.api.path;
-
-import org.opendaylight.yangtools.yang.binding.DataObject;
-import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
-import org.opendaylight.yangtools.yang.binding.InstanceIdentifier.InstanceIdentifierBuilder;
-
-/**
- * @author msunal
- *
- */
-final class Util {
-
-    @SuppressWarnings({ "rawtypes", "unchecked" })
-    static <T extends DataObject> InstanceIdentifierBuilder<T> createIIdBuilderFor(Class<T> input) {
-        return InstanceIdentifier.builder((Class) input);
-    }
-
-}