Skip to content

Commit 0986115

Browse files
committed
Don't run the automatic registration in Development Mode
If the IDE is running in "Development Mode" it doesn't make sense to run this registration job. Contributes to: eclipse-platform#2245
1 parent 6c8f226 commit 0986115

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bundles/org.eclipse.ui.ide.application/src/org/eclipse/ui/internal/ide/application/IDEWorkbenchAdvisor.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,9 @@ public void initialize(IWorkbenchConfigurer configurer) {
226226
jfaceComparatorIsSet = true;
227227
}
228228

229-
new AutoRegisterSchemeHandlersJob().schedule();
229+
if (!Platform.inDevelopmentMode()) {
230+
new AutoRegisterSchemeHandlersJob().schedule();
231+
}
230232
}
231233

232234
protected void initResourceTracking() {

0 commit comments

Comments
 (0)