*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Fri, 18 Aug 2006 19:24:33 +0200
changeset 9595 016b493d0fe8
parent 9594 40da6ee6b391
child 9596 8c5b666db3c7
*** empty log message ***
ProjectDefinition.st
--- a/ProjectDefinition.st	Fri Aug 18 19:19:39 2006 +0200
+++ b/ProjectDefinition.st	Fri Aug 18 19:24:33 2006 +0200
@@ -418,7 +418,7 @@
      (i.e. excluded from the build process). 
      A corresponding method is generated for real descriptions."
 
-    ^ self subclassResponsibility
+    ^ #()
 
     "Created: / 07-08-2006 / 19:02:57 / fm"
     "Modified: / 07-08-2006 / 21:25:25 / fm"
@@ -428,7 +428,7 @@
 compiled_classNames          
     "a correponding method with real names is generated in my subclasses"
 
-    ^ self subclassResponsibility
+    ^ #()
 
     "Created: / 07-08-2006 / 19:02:57 / fm"
     "Modified: / 07-08-2006 / 21:25:25 / fm"
@@ -455,7 +455,7 @@
     "list names of classes to be excluded from the build process.
      A correponding method with real names is generated in my subclasses"
 
-    self subclassResponsibility
+    ^#()
 
     "Created: / 07-08-2006 / 19:02:57 / fm"
     "Modified: / 07-08-2006 / 21:25:25 / fm"
@@ -466,7 +466,7 @@
     "list class/selector pairs of extensions.
      A correponding method with real names is generated in my subclasses"
 
-    self subclassResponsibility
+    ^ #()
 
     "Modified: / 17-08-2006 / 20:49:51 / cg"
 ! !
@@ -1522,5 +1522,5 @@
 !ProjectDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.18 2006-08-18 17:02:07 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.19 2006-08-18 17:24:33 cg Exp $'
 ! !