NotNull entfernen
This commit is contained in:
parent
c480e25805
commit
0c4cdd63b5
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user