Fix uninitialized (#595)

This commit is contained in:
vvb2060 2021-05-16 12:02:02 +08:00 committed by GitHub
parent e272e48e86
commit 2197fec80f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -371,7 +371,7 @@ public class ModulesActivity extends BaseActivity implements ModuleUtil.ModuleLi
private final int userId;
private final UserHandle userHandle;
private boolean isLoaded;
private int[] profiles;
private int[] profiles = new int[0];
ModuleAdapter(int userId, UserHandle userHandle) {
this.userId = userId;