Don't ignore serialization exceptions in cloneEntry

pull/120/head
Alexander Bakker 7 years ago
parent 5f9559de75
commit ad0dfab5ee

@ -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);
}
}

Loading…
Cancel
Save