mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-05-14 05:52:52 +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 {
|
||||
_vaultFile = VaultRepository.readVaultFile(_context);
|
||||
} catch (VaultRepositoryException e) {
|
||||
e.printStackTrace();
|
||||
if (!(e.getCause() instanceof FileNotFoundException)) {
|
||||
_vaultFileError = e;
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue