mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-05-14 14:02:49 +00:00
Don't print the exception of readVaultFile if the file was not found
This commit is contained in:
parent
d4557065ea
commit
cf9fbf081c
1 changed files with 1 additions and 1 deletions
|
@ -50,9 +50,9 @@ public class VaultManager {
|
||||||
try {
|
try {
|
||||||
_vaultFile = VaultRepository.readVaultFile(_context);
|
_vaultFile = VaultRepository.readVaultFile(_context);
|
||||||
} catch (VaultRepositoryException e) {
|
} catch (VaultRepositoryException e) {
|
||||||
e.printStackTrace();
|
|
||||||
if (!(e.getCause() instanceof FileNotFoundException)) {
|
if (!(e.getCause() instanceof FileNotFoundException)) {
|
||||||
_vaultFileError = e;
|
_vaultFileError = e;
|
||||||
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue