Remove ParserConstants 66/109066/1
authorRobert Varga <robert.varga@pantheon.tech>
Sun, 26 Nov 2023 11:46:50 +0000 (12:46 +0100)
committerRobert Varga <robert.varga@pantheon.tech>
Sun, 26 Nov 2023 11:47:07 +0000 (12:47 +0100)
This class is not referenced anywhere, remove it.

JIRA: NETCONF-773
Change-Id: I3075910010fb9ca4dc48894a83b1ac9668c1a549
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
restconf/restconf-nb/src/main/java/org/opendaylight/restconf/nb/rfc8040/utils/parser/ParserConstants.java [deleted file]

diff --git a/restconf/restconf-nb/src/main/java/org/opendaylight/restconf/nb/rfc8040/utils/parser/ParserConstants.java b/restconf/restconf-nb/src/main/java/org/opendaylight/restconf/nb/rfc8040/utils/parser/ParserConstants.java
deleted file mode 100644 (file)
index cf11e61..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Copyright (c) 2020 PANTHEON.tech, s.r.o. 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.nb.rfc8040.utils.parser;
-
-import com.google.common.base.CharMatcher;
-import org.opendaylight.yangtools.yang.common.YangNames;
-
-/**
- * Various constants related to RFC3986 (URI) and RFC7950 (YANG) parsing in the context of RFC8040.
- */
-final class ParserConstants {
-    // Subsequent characters of RFC7950 "identifier" rule
-    static final CharMatcher YANG_IDENTIFIER_PART = YangNames.NOT_IDENTIFIER_PART.negate().precomputed();
-
-    private ParserConstants() {
-        // Hidden on purpose
-    }
-}