Skip to content

Commit

Permalink
Merge pull request libgdx#7030 from Frosty-J/formatter
Browse files Browse the repository at this point in the history
Apply formatter
  • Loading branch information
Tom-Ski authored Nov 15, 2022
2 parents b160fe6 + c031cc7 commit ce568b4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public class AndroidApplicationConfiguration {
/** The loader used to load native libraries. Override this to use a different loading strategy. */
public GdxNativeLoader nativeLoader = new GdxNativeLoader() {
@Override
public void load() {
public void load () {
GdxNativesLoader.load();
}
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
public interface GdxNativeLoader {

/** Load GDX native libraries. */
void load();
void load ();
}
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@
import com.badlogic.gdx.tests.gwt.GwtWindowModeTest;
import com.badlogic.gdx.tests.math.CollisionPlaygroundTest;
import com.badlogic.gdx.tests.math.OctreeTest;
import com.badlogic.gdx.tests.math.collision.CollisionPlaygroundTest;
import com.badlogic.gdx.tests.math.collision.OrientedBoundingBoxTest;
import com.badlogic.gdx.tests.net.OpenBrowserExample;
import com.badlogic.gdx.tests.superkoalio.SuperKoalio;
Expand Down

0 comments on commit ce568b4

Please sign in to comment.