Skip to content

Commit

Permalink
Fixed decodeBytesForKey in theory.
Browse files Browse the repository at this point in the history
There's no way to encode bytes today in the first place.
  • Loading branch information
aljungberg committed Mar 12, 2012
1 parent 4876f77 commit e636087
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Foundation/CPKeyedUnarchiver.j
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ var CPArrayClass = Ni

var objectClass = data.isa;
if (objectClass === CPDataClass)
return data.bytes;
return data.bytes();

return nil;
}
Expand Down

0 comments on commit e636087

Please sign in to comment.