mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-03-13 11:30:01 +07:00
Exposed exposed param() as params() to avoid misuse
This commit is contained in:
parent
5115403733
commit
bbf3fa1eb6
@ -29,6 +29,11 @@ public final class StatGetter {
|
|||||||
return stats.param(index);
|
return stats.param(index);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @see StatList#param(int) */
|
||||||
|
public int params() { // different name to avoid #param() misuse
|
||||||
|
return param();
|
||||||
|
}
|
||||||
|
|
||||||
/** @see StatList#value(int) */
|
/** @see StatList#value(int) */
|
||||||
int value() {
|
int value() {
|
||||||
return stats.value(index);
|
return stats.value(index);
|
||||||
|
Loading…
Reference in New Issue
Block a user