From 87a87938fa9528cdee611a6cc495f1b555a5666e Mon Sep 17 00:00:00 2001 From: richard Date: Mon, 7 Dec 1998 11:39:40 +0000 Subject: [PATCH] By default generate non-compact archives git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@3400 72102866-910b-0410-8b05-ffd578937521 --- Headers/gnustep/base/NSSerialization.h | 2 +- Source/NSSerializer.m | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Headers/gnustep/base/NSSerialization.h b/Headers/gnustep/base/NSSerialization.h index 567eb92c0..d6106a6d9 100644 --- a/Headers/gnustep/base/NSSerialization.h +++ b/Headers/gnustep/base/NSSerialization.h @@ -51,7 +51,7 @@ * are only stored once. If the property-list has a lot of repeated * strings in it, this will be both faster and more space efficient * but it will be slower if the property-list has few repeated - * strings. The default is to generate compact versions of the data. + * strings. The default is NOT to generate compact versions of the data. * * The [+shouldBeCompact:] method sets default behavior. * The [+serializePropertyList:intoData:compact:] method lets you diff --git a/Source/NSSerializer.m b/Source/NSSerializer.m index 2518e3648..afeadeaef 100644 --- a/Source/NSSerializer.m +++ b/Source/NSSerializer.m @@ -273,7 +273,7 @@ serializeToInfo(id object, _NSSerializerInfo* info) @implementation NSSerializer -static BOOL shouldBeCompact = YES; +static BOOL shouldBeCompact = NO; + (void) initialize {