Don't throw exception if file doesn't exist
This commit is contained in:
parent
b1bd694a8a
commit
fc2ceb4b55
@ -26,6 +26,9 @@ public class FileLoader extends BaseIoLoader {
|
||||
@Nullable
|
||||
@Override
|
||||
protected InputStream getInputStream() throws IOException {
|
||||
if (!file.exists()) {
|
||||
return null;
|
||||
}
|
||||
return new FileInputStream(file);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user