ProjectDefinition.st
changeset 9909 a92096c60681
parent 9908 eede5b535b1e
child 9911 114cf30d0561
--- a/ProjectDefinition.st	Fri Sep 15 19:52:31 2006 +0200
+++ b/ProjectDefinition.st	Sat Sep 16 17:25:58 2006 +0200
@@ -1783,7 +1783,9 @@
 !
 
 loadExtensions
-    Smalltalk loadExtensionsForPackage:self package.
+    self hasExtensionMethods ifTrue:[
+        Smalltalk loadExtensionsForPackage:self package.
+    ].
 
     "Created: / 17-08-2006 / 00:21:39 / cg"
 !
@@ -2885,7 +2887,7 @@
 !ProjectDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.66 2006-09-15 17:52:31 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.67 2006-09-16 15:25:58 stefan Exp $'
 ! !
 
 ProjectDefinition initialize!