Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Schindl2014-05-13 21:05:21 +0000
committerTom Schindl2014-05-13 21:05:21 +0000
commit12152c8a24cd4427d85a2f1599daeafecce57f5c (patch)
tree3ca6c98a55cf9b3c80a2e86c1f7300ba2c10e44c
parent8389eccc247925aa13cd2688be02e6dee346bd70 (diff)
downloadorg.eclipse.efxclipse-12152c8a24cd4427d85a2f1599daeafecce57f5c.tar.gz
org.eclipse.efxclipse-12152c8a24cd4427d85a2f1599daeafecce57f5c.tar.xz
org.eclipse.efxclipse-12152c8a24cd4427d85a2f1599daeafecce57f5c.zip
Bug 434803 - Upgrade to jdt.annotation 2.0
-rwxr-xr-xbundles/runtime/org.eclipse.fx.ui.workbench.renderers.base/src/org/eclipse/fx/ui/workbench/renderers/base/widget/WPerspectiveStack.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/runtime/org.eclipse.fx.ui.workbench.renderers.base/src/org/eclipse/fx/ui/workbench/renderers/base/widget/WPerspectiveStack.java b/bundles/runtime/org.eclipse.fx.ui.workbench.renderers.base/src/org/eclipse/fx/ui/workbench/renderers/base/widget/WPerspectiveStack.java
index e42679635..27868cd87 100755
--- a/bundles/runtime/org.eclipse.fx.ui.workbench.renderers.base/src/org/eclipse/fx/ui/workbench/renderers/base/widget/WPerspectiveStack.java
+++ b/bundles/runtime/org.eclipse.fx.ui.workbench.renderers.base/src/org/eclipse/fx/ui/workbench/renderers/base/widget/WPerspectiveStack.java
@@ -63,7 +63,7 @@ public interface WPerspectiveStack<N, I, IC> extends WLayoutedWidget<MPerspectiv
* @param callback
* the callback to invoke
*/
- public void setInitCallback(@NonNull WCallback<WStackItem<I, IC>, IC> callback);
+ public void setInitCallback(@NonNull WCallback<WStackItem<I, IC>, @Nullable IC> callback);
/**
* Callback to invoke when the perspective is closed and to veto it

Back to the top