Added @override annotations

This commit is contained in:
7u83 2018-12-29 21:02:01 +01:00
parent cb01b886dc
commit ed07bd5819
1 changed files with 5 additions and 0 deletions

View File

@ -90,16 +90,19 @@ public abstract class AbstractAsset implements GetJson, Asset {
formatter = new DecimalFormat(fs); formatter = new DecimalFormat(fs);
} }
@Override
public final int getDecimals() { public final int getDecimals() {
return decimals; return decimals;
} }
@Override
public abstract String getTypeName(); public abstract String getTypeName();
protected void setDescription(String description) { protected void setDescription(String description) {
this.description = description; this.description = description;
} }
@Override
public final String getSymbol() { public final String getSymbol() {
return symbol; return symbol;
} }
@ -120,10 +123,12 @@ public abstract class AbstractAsset implements GetJson, Asset {
return description; return description;
} }
@Override
public boolean isCurrency() { public boolean isCurrency() {
return false; return false;
} }
@Override
public boolean isAsset() { public boolean isAsset() {
return false; return false;
} }