抽离部分java代码中的字符串,equals判断常量放在前面
This commit is contained in:
@ -228,9 +228,9 @@ public class DownloadManager implements DownloadStatusListener {
|
||||
}
|
||||
}
|
||||
downloadEntity.setInstalled(installed);
|
||||
if (method.equals("更新")) {
|
||||
if ("更新".equals(method)) {
|
||||
downloadEntity.setUpdate(true);
|
||||
} else if (method.equals("插件化")) {
|
||||
} else if ("插件化".equals(method)) {
|
||||
downloadEntity.setPluggable(true);
|
||||
}
|
||||
downloadEntity.setPlugin(gameEntity.getTag() != null && gameEntity.getTag().size() != 0);
|
||||
|
||||
Reference in New Issue
Block a user