Small improvements

This commit is contained in:
M66B
2018-12-04 11:40:15 +01:00
parent 9c4de134c9
commit e5ee83d544
4 changed files with 18 additions and 16 deletions

View File

@@ -69,8 +69,8 @@ public class FragmentFolder extends FragmentEx {
// Get arguments
Bundle args = getArguments();
id = (args == null ? -1 : args.getLong("id"));
account = (args == null ? -1 : args.getLong("account"));
id = args.getLong("id", -1);
account = args.getLong("account", -1);
}
@Override