diff --git a/filesystem/src/main/java/com/nytimes/android/external/fs/SourcePersisterFactory.java b/filesystem/src/main/java/com/nytimes/android/external/fs/SourcePersisterFactory.java index bcb1c5e..c1d402f 100644 --- a/filesystem/src/main/java/com/nytimes/android/external/fs/SourcePersisterFactory.java +++ b/filesystem/src/main/java/com/nytimes/android/external/fs/SourcePersisterFactory.java @@ -37,11 +37,9 @@ public final class SourcePersisterFactory { /** * Returns a new {@link BufferedSource} persister with the provided fileSystem as the root of the * persistence {@link com.nytimes.android.external.fs.filesystem.FileSystem}. - * - * @throws IOException - */ + **/ @Nonnull - public static Persister create(@Nonnull FileSystem fileSystem) throws IOException { + public static Persister create(@Nonnull FileSystem fileSystem) { if (fileSystem == null) { throw new IllegalArgumentException("fileSystem cannot be null."); }