CharacterEncoderImplementations__ISO10646_to_UTF16BE.st
branchjv
changeset 19227 5e949760a4e8
parent 18011 deb0c3355881
parent 19217 0a4b3101afec
child 19635 875eb54afd2c
--- a/CharacterEncoderImplementations__ISO10646_to_UTF16BE.st	Sat Feb 13 07:51:52 2016 +0000
+++ b/CharacterEncoderImplementations__ISO10646_to_UTF16BE.st	Sun Feb 14 07:29:57 2016 +0000
@@ -254,11 +254,11 @@
 !ISO10646_to_UTF16BE methodsFor:'private'!
 
 nextPutTwoByteValue:anInteger to:aStream
-    aStream nextPutShort:anInteger MSB:true
+    aStream nextPutInt16:anInteger MSB:true
 !
 
 nextTwoByteValueFrom:aStream
-    ^ aStream nextUnsignedShortMSB:true
+    ^ aStream nextUnsignedInt16MSB:true
 ! !
 
 !ISO10646_to_UTF16BE methodsFor:'queries'!
@@ -270,9 +270,10 @@
 !ISO10646_to_UTF16BE class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterEncoderImplementations__ISO10646_to_UTF16BE.st,v 1.6 2012-07-12 18:07:54 cg Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterEncoderImplementations__ISO10646_to_UTF16BE.st,v 1.6 2012-07-12 18:07:54 cg Exp $'
+    ^ '$Header$'
 ! !
+