Lint cleanup.

This commit is contained in:
2021-06-20 00:37:16 -07:00
parent 30bb44a8a8
commit edafe908fc
2 changed files with 2 additions and 1 deletions

View File

@@ -49,7 +49,7 @@ public class Skill implements Comparator<Skill>, Comparable<Skill> {
return String.format(
"%s%s %+d%s",
name.substring(0, 1),
name.charAt(0),
name.substring(1),
bonus,
advantageType == AdvantageType.ADVANTAGE ? " A" : advantageType == AdvantageType.DISADVANTAGE ? " D" : ""

View File

@@ -24,6 +24,7 @@ import com.majinnaibu.monstercards.ui.shared.SwipeToDeleteCallback;
/**
* A fragment representing a list of Items.
*/
@SuppressWarnings("FieldCanBeLocal")
public class EditSkillsFragment extends Fragment {
private EditMonsterViewModel mViewModel;
private ViewHolder mHolder;