Commit 030a38b9 authored by Thomas Van Lenten's avatar Thomas Van Lenten

Fix typo that snuck in with last commit.

parent 6ec27f0d
...@@ -357,7 +357,7 @@ ...@@ -357,7 +357,7 @@
NSMutableData *data = [NSMutableData data]; NSMutableData *data = [NSMutableData data];
NSKeyedArchiver *archiver = [[NSKeyedArchiver alloc] initForWritingWithMutableData:data]; NSKeyedArchiver *archiver = [[NSKeyedArchiver alloc] initForWritingWithMutableData:data];
[archiver setRequiresSecureCoding:YES]; [archiver setRequiresSecureCoding:YES];
[archiver encodeObject:obj forKey:key]; [archiver encodeObject:original forKey:key];
[archiver finishEncoding]; [archiver finishEncoding];
NSKeyedUnarchiver *unarchiver = [[NSKeyedUnarchiver alloc] initForReadingWithData:data]; NSKeyedUnarchiver *unarchiver = [[NSKeyedUnarchiver alloc] initForReadingWithData:data];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment