make common project classes hierarchy flat
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
package me.topchetoeu.j2s.common.environment;
|
||||
package me.topchetoeu.j2s.common;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.HashSet;
|
||||
@@ -1,4 +1,4 @@
|
||||
package me.topchetoeu.j2s.common.mapping;
|
||||
package me.topchetoeu.j2s.common;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
@@ -13,8 +13,6 @@ import java.util.function.Function;
|
||||
import java.util.regex.Pattern;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import me.topchetoeu.j2s.common.Filename;
|
||||
import me.topchetoeu.j2s.common.Location;
|
||||
import me.topchetoeu.j2s.common.Instruction.BreakpointType;
|
||||
|
||||
public class FunctionMap {
|
||||
3
common/src/main/java/me/topchetoeu/j2s/common/Key.java
Normal file
3
common/src/main/java/me/topchetoeu/j2s/common/Key.java
Normal file
@@ -0,0 +1,3 @@
|
||||
package me.topchetoeu.j2s.common;
|
||||
|
||||
public final class Key<T> { }
|
||||
@@ -1,3 +0,0 @@
|
||||
package me.topchetoeu.j2s.common.environment;
|
||||
|
||||
public final class Key<T> { }
|
||||
@@ -1,14 +0,0 @@
|
||||
package me.topchetoeu.j2s;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
|
||||
public class TestHelloWorld {
|
||||
|
||||
@Test
|
||||
public void testHelloWorld() {
|
||||
final String message = "Hello World!";
|
||||
assertEquals("Hello World!", message);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user