From 294d69ddc9e25d059dee2c64370141735c7050d4 Mon Sep 17 00:00:00 2001 From: Collin Smith Date: Wed, 2 Sep 2020 16:04:57 -0700 Subject: [PATCH] Removed unused params --- core/src/com/riiablo/attributes/StatGetter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/com/riiablo/attributes/StatGetter.java b/core/src/com/riiablo/attributes/StatGetter.java index e0a39ec3..eeeee34d 100644 --- a/core/src/com/riiablo/attributes/StatGetter.java +++ b/core/src/com/riiablo/attributes/StatGetter.java @@ -23,12 +23,12 @@ public final class StatGetter { } /** @see StatList#param(int) */ - int param(short stat) { + int param() { return stats.param(index); } /** @see StatList#value(int) */ - int value(short stat) { + int value() { return stats.value(index); }