Remove unused exceptions
[netconf.git] / netconf / tools / netconf-testtool / src / main / java / org / opendaylight / netconf / test / tool / schemacache / SchemaSourceCache.java
index 51f80848bd2a86463cf333f7eb0e62f12ef1acfa..9ac7b647c0b22412c507331bb752145094809819 100644 (file)
@@ -11,7 +11,6 @@ import com.google.common.base.MoreObjects.ToStringHelper;
 import com.google.common.base.Preconditions;
 import com.google.common.util.concurrent.Futures;
 import com.google.common.util.concurrent.ListenableFuture;
-import java.io.IOException;
 import java.io.InputStream;
 import java.util.HashMap;
 import java.util.Map;
@@ -102,7 +101,7 @@ public final class SchemaSourceCache<T extends SchemaSourceRepresentation>
             }
 
             @Override
-            public InputStream openStream() throws IOException {
+            public InputStream openStream() {
                 return TestToolUtils.getDataAsStream(cachedSource);
             }
         };