Fix yang-data-impl code smells
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / leafref / QNameWithPredicate.java
index c3adece6e25aa5b415b7e8cb803d38863d87f4c3..470f60ad43d432fe6337e43a3c5a813772b2650c 100644 (file)
@@ -1,4 +1,4 @@
-/**
+/*
  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
@@ -13,18 +13,16 @@ import org.opendaylight.yangtools.yang.common.QNameModule;
 
 public interface QNameWithPredicate {
 
-    static final QNameWithPredicate UP_PARENT = new QNameWithPredicateBuilder(
-            null, "..").build();
+    QNameWithPredicate UP_PARENT = new QNameWithPredicateBuilder(null, "..").build();
 
-    static final QNameWithPredicate ROOT = new QNameWithPredicateBuilder(
-            null, "").build();
+    QNameWithPredicate ROOT = new QNameWithPredicateBuilder(null, "").build();
 
-    public List<QNamePredicate> getQNamePredicates();
+    List<QNamePredicate> getQNamePredicates();
 
-    public QNameModule getModuleQname();
+    QNameModule getModuleQname();
 
-    public String getLocalName();
+    String getLocalName();
 
-    public QName getQName();
+    QName getQName();
 
-}
\ No newline at end of file
+}