Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Schindl2014-05-12 21:43:18 +0000
committerTom Schindl2014-05-12 21:43:18 +0000
commitd2a4c0cf07a7b5d07fcb2962d5338d3d77bf8202 (patch)
tree1113aa4ba33a02ae2a82b7ca5170dd703369867d
parentadbdebafdc470ae97fa7bb9c8cee41b52d37b83f (diff)
downloadorg.eclipse.efxclipse-d2a4c0cf07a7b5d07fcb2962d5338d3d77bf8202.tar.gz
org.eclipse.efxclipse-d2a4c0cf07a7b5d07fcb2962d5338d3d77bf8202.tar.xz
org.eclipse.efxclipse-d2a4c0cf07a7b5d07fcb2962d5338d3d77bf8202.zip
fixed API definition to allow null as a return when bootstrap is stopped
-rw-r--r--bundles/runtime/org.eclipse.fx.ui.workbench.base/src/org/eclipse/fx/ui/workbench/base/AbstractE4Application.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/runtime/org.eclipse.fx.ui.workbench.base/src/org/eclipse/fx/ui/workbench/base/AbstractE4Application.java b/bundles/runtime/org.eclipse.fx.ui.workbench.base/src/org/eclipse/fx/ui/workbench/base/AbstractE4Application.java
index e7b53a21a..37b925434 100644
--- a/bundles/runtime/org.eclipse.fx.ui.workbench.base/src/org/eclipse/fx/ui/workbench/base/AbstractE4Application.java
+++ b/bundles/runtime/org.eclipse.fx.ui.workbench.base/src/org/eclipse/fx/ui/workbench/base/AbstractE4Application.java
@@ -156,7 +156,7 @@ public abstract class AbstractE4Application implements IApplication {
* the application context
* @return the workbench instance
*/
- @NonNull
+ @Nullable
public E4Workbench createE4Workbench(IApplicationContext applicationContext, IEclipseContext appContext) {
ContextInjectionFactory.setDefault(appContext);

Back to the top