Compare commits

...

2 Commits

Author SHA1 Message Date
jiezhang-tlnd
88316d6b84 TOS still check extraFeatures 2021-09-08 17:07:55 +08:00
jiezhang-tlnd
3b4adbc034 feat(TUP-31920)Remove additional packages 2021-09-08 16:53:58 +08:00

View File

@@ -10,12 +10,11 @@ public class WorkbenchStartup implements IStartup {
@Override
public void earlyStartup() {
MigrationReportHelper.getInstance().checkMigrationReport(true);
CheckExtraFeaturesToInstallJob checkExtraFeaturesToInstallJob = new CheckExtraFeaturesToInstallJob();
if(!PluginChecker.isStudioLite()) {
checkExtraFeaturesToInstallJob.schedule();
if (!PluginChecker.isTIS() && !PluginChecker.isStudioLite()) {
CheckExtraFeaturesToInstallJob checkExtraFeaturesToInstallJob = new CheckExtraFeaturesToInstallJob();
checkExtraFeaturesToInstallJob.schedule();
}
}
}