Don't ignore serialization exceptions in cloneEntry

This commit is contained in:
Alexander Bakker 2018-09-25 20:05:08 +02:00
parent 5f9559de75
commit ad0dfab5ee

View file

@ -536,7 +536,7 @@ public class EditEntryActivity extends AegisActivity {
ObjectInputStream ois = new ObjectInputStream(bais);
return (DatabaseEntry) ois.readObject();
} catch (ClassNotFoundException | IOException e) {
return null;
throw new RuntimeException(e);
}
}