Changed usage of deprecated #copyWithoutLast: to #copyButLast:
authorStefan Vogel <sv@exept.de>
Thu, 25 Apr 2013 15:12:26 +0200
changeset 12718 73d137def59c
parent 12717 dcde1443a6bb
child 12719 b42d2c7c6612
Changed usage of deprecated #copyWithoutLast: to #copyButLast:
Tools_ClassCategoryList.st
--- a/Tools_ClassCategoryList.st	Thu Apr 25 15:12:08 2013 +0200
+++ b/Tools_ClassCategoryList.st	Thu Apr 25 15:12:26 2013 +0200
@@ -520,7 +520,7 @@
     cat = self class nameListEntryForALL ifTrue:[^ nil].
 
     (cat endsWith:(self stringForExtensions)) ifTrue:[
-        cat := cat copyWithoutLast:(self stringForExtensions size)
+        cat := cat copyButLast:(self stringForExtensions size)
     ].
     ^ cat
 !
@@ -1003,10 +1003,10 @@
 !ClassCategoryList class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/Tools_ClassCategoryList.st,v 1.45 2013-04-02 09:33:11 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools_ClassCategoryList.st,v 1.46 2013-04-25 13:12:26 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/Tools_ClassCategoryList.st,v 1.45 2013-04-02 09:33:11 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools_ClassCategoryList.st,v 1.46 2013-04-25 13:12:26 stefan Exp $'
 ! !