Promote SchemaSourceRepresentation
[yangtools.git] / yang / yang-repo-api / src / main / java / org / opendaylight / yangtools / yang / model / repo / api / SchemaResolutionException.java
index b6128bf8cb16e24147aa203f6b7ccb9ad153f1e2..b2862b6ac7287ea9cfc49f80615d8ba046dcf313 100644 (file)
@@ -16,6 +16,7 @@ import com.google.common.collect.Multimap;
 import java.util.Collection;
 import org.eclipse.jdt.annotation.NonNull;
 import org.opendaylight.yangtools.yang.model.api.ModuleImport;
+import org.opendaylight.yangtools.yang.model.api.source.SourceIdentifier;
 
 /**
  * Exception thrown when a Schema Source fails to resolve.
@@ -69,7 +70,7 @@ public class SchemaResolutionException extends SchemaSourceException {
      * @return YANG schema source identifier
      */
     public final SourceIdentifier getFailedSource() {
-        return this.failedSource;
+        return failedSource;
     }
 
     /**