Populate model/ hierarchy
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / meta / IdentifierNamespace.java
diff --git a/yang/yang-model-api/src/main/java/org/opendaylight/yangtools/yang/model/api/meta/IdentifierNamespace.java b/yang/yang-model-api/src/main/java/org/opendaylight/yangtools/yang/model/api/meta/IdentifierNamespace.java
deleted file mode 100644 (file)
index 91da55e..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Copyright (c) 2015 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.yangtools.yang.model.api.meta;
-
-import org.eclipse.jdt.annotation.NonNullByDefault;
-
-/**
- * Common base class for various YANG statement namespaces.
- *
- * @param <K> Identifier type
- * @param <V> Value type
- */
-@NonNullByDefault
-public abstract class IdentifierNamespace<K, V> {
-    protected IdentifierNamespace() {
-        throw new UnsupportedOperationException(getClass() + " should never be instantiated");
-    }
-}