Cleanup checkstyle in yang-{data,model}-api
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / repo / api / YinTextSchemaSource.java
index fa2813eb08e21a2a61d9e67127e5f32822321243..a1a7060f91de6f84055f1f1d627f618766a47e4a 100644 (file)
@@ -53,17 +53,11 @@ public abstract class YinTextSchemaSource extends ByteSource implements YinSchem
         return RevisionSourceIdentifier.create(parsed.getKey(), Optional.fromNullable(parsed.getValue()));
     }
 
-    /**
-     * {@inheritDoc}
-     */
     @Override
     public final SourceIdentifier getIdentifier() {
         return identifier;
     }
 
-    /**
-     * {@inheritDoc}
-     */
     @Nonnull
     @Override
     public Class<? extends YinTextSchemaSource> getType() {
@@ -94,11 +88,13 @@ public abstract class YinTextSchemaSource extends ByteSource implements YinSchem
      * @param delegate Backing ByteSource instance
      * @return A new YinTextSchemaSource
      */
-    public static YinTextSchemaSource delegateForByteSource(final SourceIdentifier identifier, final ByteSource delegate) {
+    public static YinTextSchemaSource delegateForByteSource(final SourceIdentifier identifier,
+            final ByteSource delegate) {
         return new DelegatedYinTextSchemaSource(identifier, delegate);
     }
 
-    private static final class DelegatedYinTextSchemaSource extends YinTextSchemaSource implements Delegator<ByteSource> {
+    private static final class DelegatedYinTextSchemaSource extends YinTextSchemaSource
+            implements Delegator<ByteSource> {
         private final ByteSource delegate;
 
         private DelegatedYinTextSchemaSource(final SourceIdentifier identifier, final ByteSource delegate) {