Sonar: remove unused modifiers
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / repo / spi / PotentialSchemaSource.java
index fa2758f4e3ab5679ef47dca107170a3ab761032d..73af008cdd97815a7e76ffb4ed5924c551425137 100644 (file)
@@ -76,7 +76,7 @@ public final class PotentialSchemaSource<T extends SchemaSourceRepresentation> {
         this.cost = cost;
     }
 
-    public static final <T extends SchemaSourceRepresentation> PotentialSchemaSource<T> create(final SourceIdentifier sourceIdentifier, final Class<? extends T> representation, final int cost) {
+    public static <T extends SchemaSourceRepresentation> PotentialSchemaSource<T> create(final SourceIdentifier sourceIdentifier, final Class<? extends T> representation, final int cost) {
         return new PotentialSchemaSource<>(sourceIdentifier, representation, cost);
     }