mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-07-23 22:28:33 +07:00
Changed return type for StatFormatter methods to String from CharSequence
This commit is contained in:
@ -39,12 +39,12 @@ public class StatFormatter {
|
||||
"ModStre9e", "ModStre9g", "ModStre9d", "ModStre9f",
|
||||
};
|
||||
|
||||
public CharSequence format(StatGetter stat, Attributes opAttrs) {
|
||||
public String format(StatGetter stat, Attributes opAttrs) {
|
||||
final ItemStatCost.Entry entry = stat.entry();
|
||||
return format(stat, opAttrs, entry.descfunc, entry.descval, entry.descstrpos, entry.descstrneg, entry.descstr2);
|
||||
}
|
||||
|
||||
public CharSequence format(
|
||||
public String format(
|
||||
final StatGetter stat,
|
||||
final Attributes opAttrs,
|
||||
final int func,
|
||||
|
Reference in New Issue
Block a user