Deprecate ListenerRegistration for removal
[yangtools.git] / common / concepts / src / main / java / org / opendaylight / yangtools / concepts / AbstractListenerRegistration.java
index 872816affd0a12718d3c4d10312121dac06876e0..982e7c9e48a2ed839970fd0f58f8a127877362c8 100644 (file)
@@ -10,9 +10,9 @@ package org.opendaylight.yangtools.concepts;
 import java.util.EventListener;
 import org.eclipse.jdt.annotation.NonNull;
 
+@Deprecated(since = "12.0.0", forRemoval = true)
 public abstract class AbstractListenerRegistration<T extends EventListener> extends AbstractObjectRegistration<T>
         implements ListenerRegistration<T> {
-
     protected AbstractListenerRegistration(final @NonNull T listener) {
         super(listener);
     }