X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=inline;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fmessages%2FCloseDataTreeChangeListenerRegistration.java;fp=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fmessages%2FCloseDataTreeChangeListenerRegistration.java;h=0000000000000000000000000000000000000000;hb=ec870dee9bacb971f11bc747b69e84ac37f5d746;hp=dfcc894ffe6f9ce20fc729d21d044546f9b96cb4;hpb=e7512222d7d9e3149feb6a90eeb726e9391887fa;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CloseDataTreeChangeListenerRegistration.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CloseDataTreeChangeListenerRegistration.java deleted file mode 100644 index dfcc894ffe..0000000000 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CloseDataTreeChangeListenerRegistration.java +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) 2015 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.datastore.messages; - -import java.io.ObjectStreamException; -import java.io.Serializable; - -public final class CloseDataTreeChangeListenerRegistration implements Serializable { - private static final long serialVersionUID = 1L; - private static final CloseDataTreeChangeListenerRegistration INSTANCE = - new CloseDataTreeChangeListenerRegistration(); - - private CloseDataTreeChangeListenerRegistration() { - } - - public static CloseDataTreeChangeListenerRegistration getInstance() { - return INSTANCE; - } - - private Object readResolve() throws ObjectStreamException { - return INSTANCE; - } -}