X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fcds-access-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Faccess%2Fcommands%2FModifyTransactionSuccessProxyV1.java;h=0efff09259f725752670335ce4d744111aef7801;hp=ed0992c53cd0d4271f818c9a66d434fa93d21238;hb=HEAD;hpb=73a9da24a959f8acd2f4b65abef9d49523b9af6e diff --git a/opendaylight/md-sal/cds-access-api/src/main/java/org/opendaylight/controller/cluster/access/commands/ModifyTransactionSuccessProxyV1.java b/opendaylight/md-sal/cds-access-api/src/main/java/org/opendaylight/controller/cluster/access/commands/ModifyTransactionSuccessProxyV1.java deleted file mode 100644 index ed0992c53c..0000000000 --- a/opendaylight/md-sal/cds-access-api/src/main/java/org/opendaylight/controller/cluster/access/commands/ModifyTransactionSuccessProxyV1.java +++ /dev/null @@ -1,30 +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.controller.cluster.access.commands; - -/** - * Externalizable proxy for use with {@link ModifyTransactionSuccess}. It implements the initial (Boron) serialization - * format. - */ -@Deprecated(since = "7.0.0", forRemoval = true) -final class ModifyTransactionSuccessProxyV1 extends AbstractTransactionSuccessProxy - implements ModifyTransactionSuccess.SerialForm { - @java.io.Serial - private static final long serialVersionUID = 1L; - - // checkstyle flags the public modifier as redundant however it is explicitly needed for Java serialization to - // be able to create instances via reflection. - @SuppressWarnings("checkstyle:RedundantModifier") - public ModifyTransactionSuccessProxyV1() { - // For Externalizable - } - - ModifyTransactionSuccessProxyV1(final ModifyTransactionSuccess success) { - super(success); - } -}