Skip to content

Commit

Permalink
Rename getter
Browse files Browse the repository at this point in the history
  • Loading branch information
deReeperJosh committed Feb 1, 2023
1 parent 8bc0866 commit 6b01754
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -23,7 +23,7 @@ public void setLabel(String label)
mLabel = label;
}

public int getmSlotNum()
public int getSlotNum()
{
return mSlotNum;
}
Expand Down
Expand Up @@ -70,7 +70,7 @@ public void onBindViewHolder(@NonNull ViewHolder holder, int position)
holder.binding.buttonClearSkylander.setOnClickListener(v ->
{
SkylanderConfig.removeSkylander(slot.getPortalSlot());
mContext.clearSkylander(slot.getmSlotNum());
mContext.clearSkylander(slot.getSlotNum());
});

holder.binding.buttonLoadSkylander.setOnClickListener(v ->
Expand Down

0 comments on commit 6b01754

Please sign in to comment.