Skip to content

Commit

Permalink
Use diamong notation for disableDatesMap and selectedDatesMap
Browse files Browse the repository at this point in the history
in CaldroidGridAdapter.java
  • Loading branch information
sh0m1 committed Nov 29, 2015
1 parent 9d4507f commit 8f55e90
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ public class CaldroidGridAdapter extends BaseAdapter {

// Use internally, to make the search for date faster instead of using
// indexOf methods on ArrayList
protected HashMap<DateTime, Integer> disableDatesMap = new HashMap<DateTime, Integer>();
protected HashMap<DateTime, Integer> selectedDatesMap = new HashMap<DateTime, Integer>();
protected HashMap<DateTime, Integer> disableDatesMap = new HashMap<>();
protected HashMap<DateTime, Integer> selectedDatesMap = new HashMap<>();

protected DateTime minDateTime;
protected DateTime maxDateTime;
Expand Down

0 comments on commit 8f55e90

Please sign in to comment.