X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=yang%2Fyang-model-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fyang%2Fmodel%2Fapi%2Fmeta%2FIdentifierNamespace.java;fp=yang%2Fyang-model-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fyang%2Fmodel%2Fapi%2Fmeta%2FIdentifierNamespace.java;h=0000000000000000000000000000000000000000;hb=b67b827e357ae40ae26e4bfec35b76ef5ee67967;hp=91da55e65a2eb0513d13b25aff7704dbcb539e01;hpb=9728fe497bcb7349f7e6ef9d3d984202d7ac07e7;p=yangtools.git 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 index 91da55e65a..0000000000 --- a/yang/yang-model-api/src/main/java/org/opendaylight/yangtools/yang/model/api/meta/IdentifierNamespace.java +++ /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 Identifier type - * @param Value type - */ -@NonNullByDefault -public abstract class IdentifierNamespace { - protected IdentifierNamespace() { - throw new UnsupportedOperationException(getClass() + " should never be instantiated"); - } -}