Remove TypeProviderImpl 60/74560/1
authorRobert Varga <robert.varga@pantheon.tech>
Fri, 27 Jul 2018 09:25:14 +0000 (11:25 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Fri, 27 Jul 2018 09:25:43 +0000 (11:25 +0200)
This compatibility class is no longer used, remove it.

Change-Id: I408828da2ce1783203a55f98f43bbf4a24c0633a
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
binding/mdsal-binding-generator-impl/src/main/java/org/opendaylight/mdsal/binding/yang/types/TypeProviderImpl.java [deleted file]

diff --git a/binding/mdsal-binding-generator-impl/src/main/java/org/opendaylight/mdsal/binding/yang/types/TypeProviderImpl.java b/binding/mdsal-binding-generator-impl/src/main/java/org/opendaylight/mdsal/binding/yang/types/TypeProviderImpl.java
deleted file mode 100644 (file)
index aa14e0f..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Copyright (c) 2013 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.mdsal.binding.yang.types;
-
-import org.opendaylight.yangtools.yang.model.api.SchemaContext;
-
-/**
- * {@link AbstractTypeProvider} which generates full metadata, suitable for codegen purposes. For runtime purposes,
- * considering using {@link RuntimeTypeProvider}.
- *
- * @deprecated Use {@link CodegenTypeProvider} instead.
- */
-@Deprecated
-public final class TypeProviderImpl extends CodegenTypeProvider {
-    /**
-     * Creates new instance of class <code>TypeProviderImpl</code>.
-     *
-     * @param schemaContext contains the schema data read from YANG files
-     * @throws IllegalArgumentException if <code>schemaContext</code> is null.
-     */
-    public TypeProviderImpl(final SchemaContext schemaContext) {
-        super(schemaContext);
-    }
-}