Skip to content

Commit

Permalink
Exposed some code to make it easier to implement.
Browse files Browse the repository at this point in the history
  • Loading branch information
JayTSmith committed Oct 12, 2017
1 parent a5e7086 commit fe1ef7c
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,12 @@ public View getView(int position, @Nullable View convertView, @NonNull ViewGroup

return convertView;
}

public ArrayList<Weapon> getDataset() {
return mDataset;
}

public void setDataset(ArrayList<Weapon> dataset) {
mDataset = dataset;
}
}

0 comments on commit fe1ef7c

Please sign in to comment.