Skip to content
This repository has been archived by the owner on Sep 25, 2021. It is now read-only.

Commit

Permalink
Neutralize the default boards
Browse files Browse the repository at this point in the history
  • Loading branch information
floens committed Jan 17, 2016
1 parent 2fd4941 commit 783b284
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,12 +169,10 @@ public void onErrorResponse(VolleyError error) {
private List<Board> getDefaultBoards() {
List<Board> list = new ArrayList<>();
list.add(new Board("Technology", "g", true, true));
list.add(new Board("Video Games", "v", true, true));
list.add(new Board("Anime & Manga", "a", true, true));
list.add(new Board("Comics & Cartoons", "co", true, true));
list.add(new Board("International", "int", true, true));
list.add(new Board("Food & Cooking", "ck", true, true));
list.add(new Board("Do It Yourself", "diy", true, true));
list.add(new Board("Animals & Nature", "an", true, true));
list.add(new Board("Sports", "sp", true, true));
list.add(new Board("Television & Film", "tv", true, true));

Collections.shuffle(list);

Expand Down

0 comments on commit 783b284

Please sign in to comment.