In my document-based Core Data application, in my NSManagedDocument subclass I override autosavesInPlace:
+ (BOOL)autosavesInPlace {
return YES;
}
When I open an existing document, it appears as Edited even before I change anything.

The problem seems to be related to autosaving. If I remove the autosavesInPlace method the problem goes away, and the document shows Edited only after it's actually edited.
I don't have the problem when I create a new document, only when I load an existing one.
I checked to make sure I wasn't inadvertently updating the model, though it was clear that wasn't the problem once I discovered that disabling autosaving in-place cleared it up.
Any idea what's happening?