UndefinedObject.st
branchjv
changeset 21024 8734987eb5c7
parent 20362 fea6b00ed63a
parent 20700 7cc4b1aa3949
child 21387 e3865533e6a6
--- a/UndefinedObject.st	Wed Oct 26 23:35:39 2016 +0100
+++ b/UndefinedObject.st	Fri Nov 18 20:48:04 2016 +0000
@@ -110,7 +110,6 @@
     "Modified: 3.1.1997 / 15:06:15 / cg"
 ! !
 
-
 !UndefinedObject class methodsFor:'queries'!
 
 canBeSubclassed
@@ -154,8 +153,6 @@
 ! !
 
 
-
-
 !UndefinedObject methodsFor:'Compatibility-Squeak'!
 
 subclass:nameSymbol instanceVariableNames:instVarNameString classVariableNames:classVarString category:cat
@@ -251,15 +248,15 @@
 !UndefinedObject methodsFor:'error catching'!
 
 basicAt:index
-    "catch array access - its illegal
-     defined here since basicAt: in Object ommits the nil-check"
+    "catch array access - it's illegal.
+     Redefined here since basicAt: in Object ommits the nil-check"
 
     ^ self notIndexed
 !
 
 basicAt:index put:anObject
-    "catch array access - its illegal
-     defined here since basicAt:put: in Object ommits the nil-check"
+    "catch array access - it's illegal.
+     Redefined here since basicAt:put: in Object ommits the nil-check"
 
     ^ self notIndexed
 ! !
@@ -741,7 +738,6 @@
     ^ aVisitor visitNilWith:aParameter
 ! !
 
-
 !UndefinedObject class methodsFor:'documentation'!
 
 version