#REFACTORING by stefan
authorStefan Vogel <sv@exept.de>
Tue, 05 Jul 2016 16:26:59 +0200
changeset 20071 1c3164fc850f
parent 20070 d1635271cd90
child 20072 b31532aea435
#REFACTORING by stefan class: ByteArray move #asByteString to libcompat
ByteArray.st
--- a/ByteArray.st	Tue Jul 05 16:15:53 2016 +0200
+++ b/ByteArray.st	Tue Jul 05 16:26:59 2016 +0200
@@ -164,6 +164,9 @@
 ! !
 
 
+
+
+
 !ByteArray class methodsFor:'queries'!
 
 elementByteSize
@@ -198,6 +201,8 @@
     ^ 0
 ! !
 
+
+
 !ByteArray methodsFor:'Compatibility-Squeak'!
 
 bitXor:aByteArray
@@ -223,13 +228,6 @@
     "
 ! !
 
-!ByteArray methodsFor:'Compatibility-VW'!
-
-asByteString
-    "same as asString, for visualworks compatibility"
-    
-    ^ self asString
-! !
 
 !ByteArray methodsFor:'accessing'!
 
@@ -3106,6 +3104,7 @@
     "
 ! !
 
+
 !ByteArray methodsFor:'searching'!
 
 indexOf:aByte startingAt:start
@@ -3171,6 +3170,7 @@
     "
 ! !
 
+
 !ByteArray methodsFor:'testing'!
 
 isByteArray
@@ -3195,6 +3195,7 @@
     "Modified: 22.4.1996 / 12:55:30 / cg"
 ! !
 
+
 !ByteArray class methodsFor:'documentation'!
 
 version