diff --git a/build.gradle b/build.gradle index 3c8984a..ee5fbe8 100644 --- a/build.gradle +++ b/build.gradle @@ -11,4 +11,4 @@ dependencies { repositories { mavenCentral() -} +} \ No newline at end of file diff --git a/src/main/java/com/github/kayjamlang/core/KayJamParser.java b/src/main/java/com/github/kayjamlang/core/KayJamParser.java index 9130e8d..e11cc8d 100644 --- a/src/main/java/com/github/kayjamlang/core/KayJamParser.java +++ b/src/main/java/com/github/kayjamlang/core/KayJamParser.java @@ -1,10 +1,8 @@ package com.github.kayjamlang.core; -import com.github.kayjam.core.containers.*; import com.github.kayjamlang.core.containers.*; -import com.github.kayjamlang.core.exceptions.LexerException; -import com.github.kayjam.core.expressions.*; import com.github.kayjamlang.core.exceptions.CompileException; +import com.github.kayjamlang.core.exceptions.LexerException; import com.github.kayjamlang.core.expressions.*; import com.github.kayjamlang.core.opcodes.AccessIdentifier; diff --git a/src/main/java/com/github/kayjamlang/core/expressions/CallCreate.java b/src/main/java/com/github/kayjamlang/core/expressions/CallCreate.java index 56b6fab..b384fda 100644 --- a/src/main/java/com/github/kayjamlang/core/expressions/CallCreate.java +++ b/src/main/java/com/github/kayjamlang/core/expressions/CallCreate.java @@ -1,11 +1,10 @@ package com.github.kayjamlang.core.expressions; import com.github.kayjamlang.core.Expression; -import com.github.kayjam.core.containers.*; +import com.github.kayjamlang.core.containers.ClassContainer; import com.github.kayjamlang.core.containers.Container; import com.github.kayjamlang.core.containers.Function; import com.github.kayjamlang.core.opcodes.AccessIdentifier; -import com.github.kayjamlang.core.containers.ClassContainer; import java.util.ArrayList; import java.util.List;