Eliminate restconf.common.patch.Patch 52/107452/1
authorRobert Varga <robert.varga@pantheon.tech>
Fri, 18 Aug 2023 15:17:40 +0000 (17:17 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Fri, 18 Aug 2023 15:20:29 +0000 (17:20 +0200)
This annotation is completely superfluous, remove it.

JIRA: NETCONF-1141
Change-Id: I42508e6d0b03dfc4571fed906bc074bb257b3229
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
restconf/restconf-common/src/main/java/org/opendaylight/restconf/common/patch/Patch.java [deleted file]

diff --git a/restconf/restconf-common/src/main/java/org/opendaylight/restconf/common/patch/Patch.java b/restconf/restconf-common/src/main/java/org/opendaylight/restconf/common/patch/Patch.java
deleted file mode 100644 (file)
index d44eb75..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * Copyright (c) 2016 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.restconf.common.patch;
-
-import java.lang.annotation.Documented;
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-import javax.ws.rs.HttpMethod;
-
-@Target({ElementType.METHOD, ElementType.TYPE})
-@Retention(RetentionPolicy.RUNTIME)
-@HttpMethod(HttpMethod.PATCH)
-@Documented
-@Deprecated(since = "5.0.8", forRemoval = true)
-public @interface Patch {
-    // Empty on purpose
-}
\ No newline at end of file