[CLEANUP] Removing redundant modifiers in multiple interfaces

This commit is contained in:
Fryslan
2016-06-26 21:54:29 +02:00
parent 34dedfb096
commit a3b50964ea
12 changed files with 51 additions and 51 deletions
@@ -2,19 +2,19 @@ package org.rev317.min.accessors;
public interface Character {
public int getX();
int getX();
public int getY();
int getY();
public int getAnimation();
int getAnimation();
public int getLoopCycleStatus();
int getLoopCycleStatus();
public int getCurrentHealth();
int getCurrentHealth();
public int getMaxHealth();
int getMaxHealth();
public int getInteractingEntity();
int getInteractingEntity();
String getName();
}
@@ -2,56 +2,56 @@ package org.rev317.min.accessors;
public interface Client {
public Scene getScene();
Scene getScene();
public Player getMyPlayer();
Player getMyPlayer();
public Interface[] getInterfaceCache();
Interface[] getInterfaceCache();
public Npc[] getNpcs();
Npc[] getNpcs();
public Player[] getPlayers();
Player[] getPlayers();
public int getOpenInterfaceId();
int getOpenInterfaceId();
public int getBaseX();
int getBaseX();
public int getBaseY();
int getBaseY();
public void setInterface(int id);
void setInterface(int id);
public int[] getCurrentExp();
int[] getCurrentExp();
public Deque[][][] getGroundItems();
Deque[][][] getGroundItems();
public int getLoopCycle();
int getLoopCycle();
public int getBackDialogId();
int getBackDialogId();
public int getPlane();
int getPlane();
public int[] getMenuActionId();
int[] getMenuActionId();
public int[] getMenuAction1();
int[] getMenuAction1();
public int[] getMenuAction2();
int[] getMenuAction2();
public int[] getMenuAction3();
int[] getMenuAction3();
public int[] getMenuAction4();
int[] getMenuAction4();
public CollisionMap[] getCollisionMap();
CollisionMap[] getCollisionMap();
// args switched
public boolean walkTo(int clickType, int sizeX, int sizeY, int startX, int startY, int destX, int destY, int type, int face, boolean arbitrary, int rotation);
boolean walkTo(int clickType, int sizeX, int sizeY, int startX, int startY, int destX, int destY, int type, int face, boolean arbitrary, int rotation);
public void doAction(int i);
void doAction(int i);
public void dropClient();
void dropClient();
public int[] getCurrentStats();
int[] getCurrentStats();
public int[] getSettings();
int[] getSettings();
public boolean isLoggedIn();
boolean isLoggedIn();
}
@@ -3,7 +3,7 @@ package org.rev317.min.accessors;
public interface CollisionMap {
public int[][] getFlags();
int[][] getFlags();
}
@@ -2,8 +2,8 @@ package org.rev317.min.accessors;
public interface Deque {
public Node getHead();
Node getHead();
public Node getCurrent();
Node getCurrent();
}
@@ -2,14 +2,14 @@ package org.rev317.min.accessors;
public interface Ground {
public SceneObjectTile getWallObject();
SceneObjectTile getWallObject();
public SceneObjectTile getWallDecoration();
SceneObjectTile getWallDecoration();
public SceneObjectTile getGroundDecoration();
SceneObjectTile getGroundDecoration();
public SceneObjectTile getGroundItem();
SceneObjectTile getGroundItem();
public SceneObjectTile[] getInteractiveObjects();
SceneObjectTile[] getInteractiveObjects();
}
@@ -2,17 +2,17 @@ package org.rev317.min.accessors;
public interface Interface {
public int[] getItems();
int[] getItems();
public int[] getStackSizes();
int[] getStackSizes();
/**
* This is meant for the clients that have a long value as their stacksizes, simply because they have no logic...
*
* @return long version of #getStackSizes
*/
public long[] getLongStackSizes();
long[] getLongStackSizes();
public String getMessage();
String getMessage();
}
@@ -2,7 +2,7 @@ package org.rev317.min.accessors;
public interface Item {
public int getId();
int getId();
}
@@ -2,6 +2,6 @@ package org.rev317.min.accessors;
public interface Node {
public Node getNext();
Node getNext();
}
@@ -2,6 +2,6 @@ package org.rev317.min.accessors;
public interface Npc extends Character {
public NpcDef getDef();
NpcDef getDef();
}
@@ -2,6 +2,6 @@ package org.rev317.min.accessors;
public interface NpcDef {
public int getId();
int getId();
}
@@ -2,6 +2,6 @@ package org.rev317.min.accessors;
public interface Scene {
public Ground[][][] getGroundArray();
Ground[][][] getGroundArray();
}
@@ -2,6 +2,6 @@ package org.rev317.min.accessors;
public interface SceneObjectTile {
public int getHash();
int getHash();
}