Optimize code

Signed-off-by: Chris Cromer <chris@cromer.cl>
This commit is contained in:
Chris Cromer 2019-10-05 23:51:31 -03:00
parent e39f52d041
commit e0bc99a095
5 changed files with 6 additions and 25 deletions

View File

@ -1,6 +1,7 @@
<component name="ProjectDictionaryState">
<dictionary name="cromer">
<words>
<w>appname</w>
<w>aventura</w>
<w>azaraka</w>
<w>celda</w>
@ -9,6 +10,9 @@
<w>cellspacing</w>
<w>constantes</w>
<w>cromer</w>
<w>dorg</w>
<w>endlocal</w>
<w>errorlevel</w>
<w>escenario</w>
<w>gameover</w>
<w>ganaste</w>

View File

@ -94,15 +94,6 @@ public class Celda extends JComponent implements Constantes {
this.object = object;
}
/**
* Get the top object
*
* @return Returns the top object
*/
public Object getObjectOnTop() {
return objectOnTop;
}
/**
* Set a top object
*

View File

@ -24,10 +24,6 @@ import cl.cromer.azaraka.sprite.AnimationException;
* This class contains the gem
*/
public class Gem extends Object {
/**
* The type of gem
*/
private Type type = null;
/**
* The current state of the gem
*/
@ -92,7 +88,6 @@ public class Gem extends Object {
* @param type The type of gem
*/
public void setType(Type type) {
this.type = type;
loadGemAnimation(type);
}

View File

@ -126,7 +126,7 @@ public class Object implements Runnable, Constantes {
*
* @param x The amount of pixels to scale
*/
public void setXScale(int x) {
protected void setXScale(@SuppressWarnings("SameParameterValue") int x) {
this.xScale = x;
}
@ -135,7 +135,7 @@ public class Object implements Runnable, Constantes {
*
* @param y The amount of pixels to scale
*/
public void setYScale(int y) {
protected void setYScale(@SuppressWarnings("SameParameterValue") int y) {
this.yScale = y;
}

View File

@ -109,15 +109,6 @@ public class Portal extends Object implements Constantes {
}
}
/**
* Get the current status of the portal
*
* @return Returns the status
*/
public State getState() {
return state;
}
/**
* Sets a new status for the portal
*