checkin from browser
authorClaus Gittinger <cg@exept.de>
Wed, 15 Sep 1999 14:22:07 +0200
changeset 4728 37eaa8241422
parent 4727 ec580e5f9b22
child 4729 ae6466d802c8
checkin from browser
Behavior.st
Boolean.st
Character.st
--- a/Behavior.st	Wed Sep 15 09:04:48 1999 +0200
+++ b/Behavior.st	Wed Sep 15 14:22:07 1999 +0200
@@ -1460,13 +1460,6 @@
 
 !Behavior methodsFor:'copying'!
 
-deepCopy
-    "return a deep copy of the receiver
-     - return the receiver here - time will show if this is ok"
-
-    ^ self
-!
-
 deepCopyUsing:aDictionary
     "return a deep copy of the receiver
      - return the receiver here - time will show if this is ok"
@@ -4019,5 +4012,5 @@
 !Behavior class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Behavior.st,v 1.154 1999-09-06 18:48:23 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Behavior.st,v 1.155 1999-09-15 12:22:07 cg Exp $'
 ! !
--- a/Boolean.st	Wed Sep 15 09:04:48 1999 +0200
+++ b/Boolean.st	Wed Sep 15 14:22:07 1999 +0200
@@ -124,13 +124,6 @@
     ^ self
 !
 
-deepCopy
-    "return a deep copy of the receiver
-     - since both true and false are unique, return the receiver"
-
-    ^ self
-!
-
 deepCopyUsing:aDictionary
     "return a deep copy of the receiver
      - since both true and false are unique, return the receiver"
@@ -184,6 +177,14 @@
     ^ true
 ! !
 
+!Boolean methodsFor:'queries - asn1'!
+
+asn1Type
+    ^ OSI::ASN1_BOOLEAN primitiveType
+
+
+! !
+
 !Boolean methodsFor:'tracing'!
 
 traceInto:aRequestor level:level from:referrer
@@ -197,5 +198,5 @@
 !Boolean class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Boolean.st,v 1.24 1999-09-04 18:20:45 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Boolean.st,v 1.25 1999-09-15 12:21:48 cg Exp $'
 ! !
--- a/Character.st	Wed Sep 15 09:04:48 1999 +0200
+++ b/Character.st	Wed Sep 15 14:22:07 1999 +0200
@@ -699,30 +699,23 @@
 	^self
 !
 
-deepCopy
-    "return a deep copy of myself
-     reimplemented since characters are unique"
-
-     ^ self
-!
-
 deepCopyUsing:aDictionary
     "return a deep copy of myself
-     reimplemented since characters are unique"
+     reimplemented since characters are immutable"
 
      ^ self
 !
 
 shallowCopy
     "return a shallow copy of myself
-     reimplemented since characters are unique"
+     reimplemented since characters are immutable"
 
      ^ self
 !
 
 simpleDeepCopy
     "return a deep copy of myself
-     reimplemented since characters are unique"
+     reimplemented since characters are immutable"
 
      ^ self
 ! !
@@ -1089,5 +1082,5 @@
 !Character class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Character.st,v 1.55 1999-09-04 18:20:32 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Character.st,v 1.56 1999-09-15 12:21:24 cg Exp $'
 ! !