Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
gschueler committed Jul 27, 2015
1 parent a068e7a commit 30bf5dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public CacheableYamlStreamSource(final InputStream stream, final String identity
}

@Override
public Iterable<Object> loadAll(final Yaml yaml) throws FileNotFoundException, IOException {
public Iterable<Object> loadAll(final Yaml yaml) throws IOException {
return yaml.loadAll(stream);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
*/
public interface YamlSource extends Closeable{
public String getIdentity();
public Iterable<Object> loadAll(Yaml yaml) throws FileNotFoundException, IOException;
public Iterable<Object> loadAll(Yaml yaml) throws IOException;
}

0 comments on commit 30bf5dc

Please sign in to comment.