Small improvements

This commit is contained in:
M66B 2020-06-06 10:58:51 +02:00
parent 1b079c6a27
commit b8e0f65f0d
2 changed files with 4 additions and 4 deletions

View File

@ -1785,7 +1785,7 @@ public class FragmentAccount extends FragmentBase {
return folders; return folders;
} }
private class CheckResult { private static class CheckResult {
EntityAccount account; EntityAccount account;
List<EntityFolder> folders; List<EntityFolder> folders;
boolean idle; boolean idle;

View File

@ -1058,7 +1058,7 @@ public class FragmentRule extends FragmentBase {
return jaction; return jaction;
} }
private class AccountFolder { private static class AccountFolder {
EntityAccount account; EntityAccount account;
EntityFolder folder; EntityFolder folder;
String name; String name;
@ -1076,14 +1076,14 @@ public class FragmentRule extends FragmentBase {
} }
} }
private class RefData { private static class RefData {
EntityFolder folder; EntityFolder folder;
List<AccountFolder> folders; List<AccountFolder> folders;
List<EntityIdentity> identities; List<EntityIdentity> identities;
List<EntityAnswer> answers; List<EntityAnswer> answers;
} }
private class Action { private static class Action {
int type; int type;
String name; String name;