NotNull entfernen

This commit is contained in:
JanUlrich 2017-04-06 15:33:20 +02:00
parent c480e25805
commit 0c4cdd63b5

View File

@ -1,8 +1,6 @@
package de.dhbwstuttgart.syntaxtree.statement;
import com.sun.istack.internal.NotNull;
import de.dhbwstuttgart.syntaxtree.SyntaxTreeNode;
import de.dhbwstuttgart.syntaxtree.type.RefTypeOrTPHOrWildcardOrGeneric;
import de.dhbwstuttgart.typeinference.assumptions.TypeInferenceBlockInformation;
@ -13,7 +11,7 @@ public abstract class Expression extends SyntaxTreeNode
{
private RefTypeOrTPHOrWildcardOrGeneric type;
public Expression(@NotNull RefTypeOrTPHOrWildcardOrGeneric type, Token offset){
public Expression(RefTypeOrTPHOrWildcardOrGeneric type, Token offset){
super(offset);
if(type == null)throw new NullPointerException();
this.type = type;