Skip to content

Commit

Permalink
[clean] Remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
5pilow committed Jun 23, 2023
1 parent a888bf7 commit 6f0fe20
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/main/java/leekscript/compiler/AIFile.java
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,6 @@ public Complete complete(int line, int column) {

// Find token
var token = tokens.atLocation(line, column);
System.out.println("token = " + token);
if (token == null) return null;

if (token.getExpression() != null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ public Hover hover(Token token) {

@Override
public Complete complete(Token token) {
System.out.println("OA complete " + this.object.getType());
// System.out.println("OA complete " + this.object.getType());
return this.object.getType().complete();
}

Expand Down

0 comments on commit 6f0fe20

Please sign in to comment.