Skip to content

Commit

Permalink
Apply formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Nov 15, 2022
1 parent 433466a commit 300d513
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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 ();
}

0 comments on commit 300d513

Please sign in to comment.