Skip to content

Commit

Permalink
ok
Browse files Browse the repository at this point in the history
  • Loading branch information
kenmeidearu committed Oct 25, 2017
1 parent 34dcbae commit 62b2fe6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public static SearchableListDialog newInstance(ArrayList<mListString> itemlist,i
_strTitle=listTitle;

Bundle args = new Bundle();
args.putSerializable(ITEMSLIST, (Serializable) itemlist);
args.putSerializable(ITEMSLIST, itemlist);
multiSelectExpandableFragment.setArguments(args);

return multiSelectExpandableFragment;
Expand All @@ -72,7 +72,7 @@ public static SearchableListDialog newInstance(ArrayList<mListString> items) {
SearchableListDialog();

Bundle args = new Bundle();
args.putSerializable(ITEMSLIST, (Serializable) items);
args.putSerializable(ITEMSLIST, items);

multiSelectExpandableFragment.setArguments(args);

Expand Down

0 comments on commit 62b2fe6

Please sign in to comment.