Skip to content

Commit

Permalink
remove debugging stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
mworzala committed Sep 5, 2022
1 parent 8ecb87d commit 184d5cf
Show file tree
Hide file tree
Showing 7 changed files with 91 additions and 367 deletions.
312 changes: 91 additions & 221 deletions modules/development/src/main/java/unnamed/mmo/server/dev/Main.java

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion modules/entity/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ plugins {

dependencies {
implementation(project(":modules:common"))
implementation(files("libs/enodia-pf-1.0.1.jar"))
}
Binary file removed modules/entity/libs/enodia-pf-1.0.1.jar
Binary file not shown.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@

public interface Navigator {

static @NotNull Navigator enodia(@NotNull Entity entity) {
return new EnodiaNavigator(entity);
}

static @NotNull Navigator hydrazine(@NotNull Entity entity) {
return new HydrazineNavigator(entity);
}
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ public class TestUtil {

public static Stream<Arguments> navigators() {
return Stream.of(
// Arguments.of("enodia", (Function<Entity, Navigator>) EnodiaNavigator::new),
// Arguments.of("hydrazine", (Function<Entity, Navigator>) HydrazineNavigator::new),
// Arguments.of("custom", (Function<Entity, Navigator>) CustomNavigator::new),
Arguments.of("motion", (Function<Entity, Navigator>) MotionNavigator::new)
Expand Down

0 comments on commit 184d5cf

Please sign in to comment.