*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Tue, 06 Nov 2001 17:23:13 +0100
changeset 6157 5b61e11fc4dd
parent 6156 ff2df95a69bf
child 6158 7fb96896ed4b
*** empty log message ***
Object.st
--- a/Object.st	Tue Nov 06 14:19:26 2001 +0100
+++ b/Object.st	Tue Nov 06 17:23:13 2001 +0100
@@ -13,20 +13,20 @@
 "{ Package: 'stx:libbasic' }"
 
 nil subclass:#Object
-        instanceVariableNames:''
-        classVariableNames:'ErrorSignal HaltSignal MessageNotUnderstoodSignal
-                UserInterruptSignal RecursionInterruptSignal
-                ExceptionInterruptSignal SubscriptOutOfBoundsSignal
-                IndexNotFoundSignal NonIntegerIndexSignal NotFoundSignal
-                KeyNotFoundSignal ElementOutOfBoundsSignal UserNotificationSignal
-                InformationSignal WarningSignal PrimitiveFailureSignal
-                DeepCopyErrorSignal AbortSignal ErrorRecursion Dependencies
-                InfoPrinting ActivityNotificationSignal InternalErrorSignal
-                NonWeakDependencies SynchronizationSemaphores ObjectAttributes
-                OSSignalInterruptSignal FinalizationLobby
-                RecursiveStoreStringSignal AbortAllSignal'
-        poolDictionaries:''
-        category:'Kernel-Objects'
+	instanceVariableNames:''
+	classVariableNames:'ErrorSignal HaltSignal MessageNotUnderstoodSignal
+		UserInterruptSignal RecursionInterruptSignal
+		ExceptionInterruptSignal SubscriptOutOfBoundsSignal
+		IndexNotFoundSignal NonIntegerIndexSignal NotFoundSignal
+		KeyNotFoundSignal ElementOutOfBoundsSignal UserNotificationSignal
+		InformationSignal WarningSignal PrimitiveFailureSignal
+		DeepCopyErrorSignal AbortSignal ErrorRecursion Dependencies
+		InfoPrinting ActivityNotificationSignal InternalErrorSignal
+		NonWeakDependencies SynchronizationSemaphores ObjectAttributes
+		OSSignalInterruptSignal FinalizationLobby
+		RecursiveStoreStringSignal AbortAllSignal'
+	poolDictionaries:''
+	category:'Kernel-Objects'
 !
 
 !Object class methodsFor:'documentation'!
@@ -6664,7 +6664,6 @@
     ^ self
 ! !
 
-
 !Object methodsFor:'secure message sending'!
 
 askFor:aSelector
@@ -8065,13 +8064,6 @@
     ^ false
 !
 
-isReal
-    "return true, if the receiver is some kind of real number;
-     false is returned here - the method is only redefined in LimitedPrecisionReal."
-
-    ^ false
-!
-
 isRectangle
     "return true, if the receiver is some kind of rectangle;
      false is returned here - the method is only redefined in Rectangle."
@@ -8572,6 +8564,6 @@
 !Object class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Object.st,v 1.374 2001-11-05 15:35:48 james Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Object.st,v 1.375 2001-11-06 16:23:13 cg Exp $'
 ! !
 Object initialize!