Remove SchemaContextListener 17/109217/1
authorRobert Varga <robert.varga@pantheon.tech>
Thu, 7 Dec 2023 22:14:26 +0000 (23:14 +0100)
committerRobert Varga <robert.varga@pantheon.tech>
Thu, 7 Dec 2023 22:15:13 +0000 (23:15 +0100)
This is a holdout of times long past and it references j.u.EventLister.
Remove it.

JIRA: YANGTOOLS-1551
Change-Id: I7855fb188168774f5ee4b45ef5670942fef59c05
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
model/yang-model-api/src/main/java/org/opendaylight/yangtools/yang/model/api/SchemaContextListener.java [deleted file]

diff --git a/model/yang-model-api/src/main/java/org/opendaylight/yangtools/yang/model/api/SchemaContextListener.java b/model/yang-model-api/src/main/java/org/opendaylight/yangtools/yang/model/api/SchemaContextListener.java
deleted file mode 100644 (file)
index 2497a1f..0000000
+++ /dev/null
@@ -1,26 +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.yangtools.yang.model.api;
-
-import java.util.EventListener;
-
-/**
- * Interface for listeners interested in updates of the global schema context. The global schema context reflects the
- * global view of the model world, and all entities interacting at the global scale need to maintain a consistent view
- * of that world.
- *
- * @deprecated Use {@link EffectiveModelContextListener} instead.
- */
-@Deprecated(since = "11.0.5", forRemoval = true)
-public interface SchemaContextListener extends EventListener {
-    /**
-     * The global schema context is being updated.
-     * @param context New global schema context
-     */
-    void onGlobalContextUpdated(SchemaContext context);
-}