Skip to content

Commit

Permalink
Merge pull request maurycyw#32 from BenoitDuffez/master
Browse files Browse the repository at this point in the history
Fix crashes and code compilation
  • Loading branch information
maurycyw committed Jul 8, 2013
2 parents 1921d6e + d914828 commit a3b776a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/com/origamilabs/library/views/StaggeredGridView.java
Original file line number Diff line number Diff line change
Expand Up @@ -2056,7 +2056,7 @@ public ColMap(ArrayList<Integer> values){
}

private ColMap(Parcel in) {
in.readIntArray(tempMap);
tempMap = in.createIntArray();
values = new ArrayList<Integer>();
for (int index = 0; index < tempMap.length; index++) {
values.add(tempMap[index]);
Expand Down Expand Up @@ -2106,8 +2106,8 @@ private SavedState(Parcel in) {
super(in);
firstId = in.readLong();
position = in.readInt();
in.createIntArray(topOffsets);
in.readTypedList(mapping, ColMap.CREATOR);
topOffsets = in.createIntArray();
mapping = in.createTypedList(ColMap.CREATOR);

}

Expand Down

0 comments on commit a3b776a

Please sign in to comment.