Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEd Willink2016-03-24 10:34:15 +0000
committerEd Willink2016-03-24 11:59:36 +0000
commit9cea5260be582518bf5321ec96b9b32111dc1cb6 (patch)
treef493c1dca84a4414aa221dc52aae5ad4eeb210e3 /plugins/org.eclipse.qvtd.xtext.qvtcore
parentb0b720bfe02a110d5d000b742ff3dc2ea9baeff6 (diff)
downloadorg.eclipse.qvtd-9cea5260be582518bf5321ec96b9b32111dc1cb6.tar.gz
org.eclipse.qvtd-9cea5260be582518bf5321ec96b9b32111dc1cb6.tar.xz
org.eclipse.qvtd-9cea5260be582518bf5321ec96b9b32111dc1cb6.zip
[unrelated] Declare delegate template parameter as @NonNull
Diffstat (limited to 'plugins/org.eclipse.qvtd.xtext.qvtcore')
-rw-r--r--plugins/org.eclipse.qvtd.xtext.qvtcore/emf-gen/org/eclipse/qvtd/xtext/qvtcorecs/util/AbstractDelegatingQVTcoreCSVisitor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.qvtd.xtext.qvtcore/emf-gen/org/eclipse/qvtd/xtext/qvtcorecs/util/AbstractDelegatingQVTcoreCSVisitor.java b/plugins/org.eclipse.qvtd.xtext.qvtcore/emf-gen/org/eclipse/qvtd/xtext/qvtcorecs/util/AbstractDelegatingQVTcoreCSVisitor.java
index 3924ef578..357a17ad3 100644
--- a/plugins/org.eclipse.qvtd.xtext.qvtcore/emf-gen/org/eclipse/qvtd/xtext/qvtcorecs/util/AbstractDelegatingQVTcoreCSVisitor.java
+++ b/plugins/org.eclipse.qvtd.xtext.qvtcore/emf-gen/org/eclipse/qvtd/xtext/qvtcorecs/util/AbstractDelegatingQVTcoreCSVisitor.java
@@ -22,7 +22,7 @@ import org.eclipse.jdt.annotation.NonNull;
/**
* An AbstractDelegatingQVTcoreCSVisitor delegates all visits.
*/
-public abstract class AbstractDelegatingQVTcoreCSVisitor<R, C, D extends QVTcoreCSVisitor<R>>
+public abstract class AbstractDelegatingQVTcoreCSVisitor<R, C, @NonNull D extends QVTcoreCSVisitor<R>>
extends org.eclipse.qvtd.xtext.qvtcorebasecs.util.AbstractDelegatingQVTcoreBaseCSVisitor<R, C, D>
implements QVTcoreCSVisitor<R>
{

Back to the top