Bump odlparent to 10.0.0
[yangtools.git] / model / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / stmt / SchemaNodeIdentifier.java
index b5f9be9e8d05096033158d50eeb47e3b7acab827..728d8ea68af18920a3a952ba4595cb8cfef209e0 100644 (file)
@@ -14,7 +14,6 @@ import com.google.common.base.MoreObjects;
 import com.google.common.collect.ImmutableList;
 import com.google.common.collect.Interner;
 import com.google.common.collect.Interners;
-import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
 import java.util.ArrayList;
 import java.util.Arrays;
 import java.util.Collection;
@@ -293,8 +292,6 @@ public abstract class SchemaNodeIdentifier implements Immutable {
         return ids.size() < 2 ? ids : simplifyQNames(ids);
     }
 
-    @SuppressFBWarnings(value = "UPM_UNCALLED_PRIVATE_METHOD",
-            justification = "https://github.com/spotbugs/spotbugs/issues/811")
     private static ImmutableList<QName> checkQNames(final Collection<QName> qnames) {
         final ImmutableList<QName> ret = ImmutableList.copyOf(qnames);
         checkArgument(!ret.isEmpty(), "SchemaNodeIdentifier has to have at least one node identifier");