Use yang-data-codec-binfmt
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / main / java / org / opendaylight / controller / cluster / datastore / node / utils / stream / LithiumTokens.java
diff --git a/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/datastore/node/utils/stream/LithiumTokens.java b/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/datastore/node/utils/stream/LithiumTokens.java
deleted file mode 100644 (file)
index 27241e9..0000000
+++ /dev/null
@@ -1,31 +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.node.utils.stream;
-
-/**
- * Tokens related to Lithium/NeonSR2 encoding.
- */
-final class LithiumTokens {
-    /**
-     * The value is a reference to a previously-defined entity, typically through {@link #IS_STRING_VALUE}.
-     */
-    static final byte IS_CODE_VALUE = 1;
-    /**
-     * The value is a String, which needs to be kept memoized for the purposes for being referenced by
-     * {@link #IS_CODE_VALUE}.
-     */
-    static final byte IS_STRING_VALUE = 2;
-    /**
-     * The value is an explicit null.
-     */
-    static final byte IS_NULL_VALUE = 3;
-
-    private LithiumTokens() {
-
-    }
-}