We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
IncludeToken
1 parent 112a49a commit 9a96d87Copy full SHA for 9a96d87
delphi-frontend/src/main/java/au/com/integradev/delphi/antlr/ast/token/IncludeToken.java
@@ -20,7 +20,6 @@
20
21
import org.antlr.runtime.CharStream;
22
import org.antlr.runtime.CommonToken;
23
-import org.antlr.runtime.Token;
24
import org.sonar.plugins.communitydelphi.api.token.DelphiToken;
25
26
public class IncludeToken extends CommonToken {
@@ -32,11 +31,6 @@ public IncludeToken(
32
31
this.insertionToken = insertionToken;
33
}
34
35
- public IncludeToken(Token token, DelphiToken insertionToken) {
36
- super(token);
37
- this.insertionToken = insertionToken;
38
- }
39
-
40
public IncludeToken(IncludeToken other) {
41
super(other);
42
this.insertionToken = other.insertionToken;
0 commit comments