[core] final static -> static final

This commit is contained in:
tehcneko 2021-02-20 21:36:00 +08:00
parent 937a096e61
commit f8013f208c
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ public class ConfigManager {
}
}
private final static SQLiteStatement createModulesTable = db.compileStatement("CREATE TABLE IF NOT EXISTS modules (" +
private static final SQLiteStatement createModulesTable = db.compileStatement("CREATE TABLE IF NOT EXISTS modules (" +
"mid integer PRIMARY KEY AUTOINCREMENT," +
"module_pkg_name text NOT NULL UNIQUE," +
"apk_path text NOT NULL, " +