mirror of
https://github.com/square/okhttp.git
synced 2025-08-07 12:42:57 +03:00
Removed IOException from FileSystem exists method as this should never occur.
This commit is contained in:
@@ -113,7 +113,7 @@ public final class InMemoryFileSystem implements FileSystem, TestRule {
|
||||
files.remove(file);
|
||||
}
|
||||
|
||||
@Override public boolean exists(File file) throws IOException {
|
||||
@Override public boolean exists(File file) {
|
||||
return files.containsKey(file);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user