Explicit exceptions

This commit is contained in:
M66B
2019-03-14 07:51:22 +00:00
parent 98b84f8927
commit 0c74aa4cfa
3 changed files with 8 additions and 5 deletions

View File

@@ -64,6 +64,7 @@ import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.IOException;
@@ -1424,7 +1425,7 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
DB db = DB.getInstance(context);
EntityMessage message = db.message().getMessage(id);
if (message == null)
return null;
throw new FileNotFoundException();
File file = message.getRawFile(context);
Log.i("Raw file=" + file);
@@ -1498,7 +1499,7 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
DB db = DB.getInstance(context);
EntityAttachment attachment = db.attachment().getAttachment(id);
if (attachment == null)
return null;
throw new FileNotFoundException();
File file = attachment.getFile(context);
ParcelFileDescriptor pfd = null;