mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-05-03 03:44:52 +00:00
Don't ignore serialization exceptions in cloneEntry
This commit is contained in:
parent
5f9559de75
commit
ad0dfab5ee
1 changed files with 1 additions and 1 deletions
|
@ -536,7 +536,7 @@ public class EditEntryActivity extends AegisActivity {
|
||||||
ObjectInputStream ois = new ObjectInputStream(bais);
|
ObjectInputStream ois = new ObjectInputStream(bais);
|
||||||
return (DatabaseEntry) ois.readObject();
|
return (DatabaseEntry) ois.readObject();
|
||||||
} catch (ClassNotFoundException | IOException e) {
|
} catch (ClassNotFoundException | IOException e) {
|
||||||
return null;
|
throw new RuntimeException(e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue