Skip to content

Commit

Permalink
Fix #19
Browse files Browse the repository at this point in the history
  • Loading branch information
nekocode committed May 2, 2017
1 parent 8eac8f3 commit 9dac77f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public ParcelableObjectSerializer(ValueParameterDescriptor field) {
}

public String generateReadValue() {
return "source.readParcelable<" + getType() + ">(" + getNoneNullType() + "::class.java.classLoader)";
return "source.readParcelable<" + getNoneNullType() + ">(" + getNoneNullType() + "::class.java.classLoader)";
}

public String generateWriteValue() {
Expand Down

0 comments on commit 9dac77f

Please sign in to comment.