Skip to content

Commit

Permalink
Final-ly.
Browse files Browse the repository at this point in the history
Please excuse my horrible pun.
  • Loading branch information
gravityfox committed Dec 10, 2015
1 parent 6f7da80 commit 3dc429b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/java/net/foxdenstudio/foxcore/FoxCoreMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
import java.io.File;

@Plugin(id = "foxcore", name = "FoxCore", version = FoxCoreMain.PLUGIN_VERSION)
public class FoxCoreMain {
public final class FoxCoreMain {

public static final String PLUGIN_VERSION = "SNAPSHOT";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

import static net.foxdenstudio.foxcore.util.Aliases.isAlias;

public class FCStateRegistry {
public final class FCStateRegistry {

private static FCStateRegistry instance;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/foxdenstudio/foxcore/util/Aliases.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

import org.spongepowered.api.util.Tristate;

public class Aliases {
public final class Aliases {

public static final String[] WORLD_ALIASES = {"world", "w", "dimension", "d"};
public static final String[] REGIONS_ALIASES = {"regions", "region", "reg", "r"};
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/foxdenstudio/foxcore/util/FCHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
import java.util.Arrays;
import java.util.List;

public class FCHelper {
public final class FCHelper {
public static int parseCoordinate(int sPos, String arg) throws NumberFormatException {
if (arg.equals("~")) {
return sPos;
Expand Down

0 comments on commit 3dc429b

Please sign in to comment.