From 93030567451d730d293a1db435c51581d28751e6 Mon Sep 17 00:00:00 2001 From: levkopo <40952805+levkoposc@users.noreply.github.com> Date: Mon, 22 Feb 2021 16:16:44 +0500 Subject: [PATCH] Small fix --- build.gradle | 2 +- src/main/java/com/github/kayjamlang/core/KayJamParser.java | 4 +--- .../com/github/kayjamlang/core/expressions/CallCreate.java | 3 +-- 3 files changed, 3 insertions(+), 6 deletions(-) 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;