From d9e6e84591eb9f73e79fdf88941a9b94cd6f17f2 Mon Sep 17 00:00:00 2001 From: rfm Date: Tue, 28 Apr 2009 20:00:59 +0000 Subject: [PATCH] Remove obsolete ifdefs git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@28262 72102866-910b-0410-8b05-ffd578937521 --- Source/NSArray.m | 4 ---- Source/NSDictionary.m | 4 ---- 2 files changed, 8 deletions(-) diff --git a/Source/NSArray.m b/Source/NSArray.m index 408800647..16de0b109 100644 --- a/Source/NSArray.m +++ b/Source/NSArray.m @@ -57,13 +57,9 @@ static BOOL GSMacOSXCompatiblePropertyLists(void) { -#if defined(HAVE_LIBXML) if (GSPrivateDefaultsFlag(NSWriteOldStylePropertyLists) == YES) return NO; return GSPrivateDefaultsFlag(GSMacOSXCompatible); -#else - return NO; -#endif } extern void GSPropertyListMake(id,NSDictionary*,BOOL,BOOL,unsigned,id*); diff --git a/Source/NSDictionary.m b/Source/NSDictionary.m index 8c3d70948..f603ec53b 100644 --- a/Source/NSDictionary.m +++ b/Source/NSDictionary.m @@ -47,13 +47,9 @@ static BOOL GSMacOSXCompatiblePropertyLists(void) { -#if defined(HAVE_LIBXML) if (GSPrivateDefaultsFlag(NSWriteOldStylePropertyLists) == YES) return NO; return GSPrivateDefaultsFlag(GSMacOSXCompatible); -#else - return NO; -#endif } @class GSDictionary;