#REFACTORING
authorClaus Gittinger <cg@exept.de>
Wed, 30 Dec 2015 00:18:31 +0100
changeset 3676 29e4fbe103d6
parent 3675 058f3f83eae0
child 3677 24749e493df1
child 3678 a03fb375c047
#REFACTORING class: TSTreeNode changed: #canBeCulled and:and:and: eliminated
TSTreeNode.st
--- a/TSTreeNode.st	Tue Dec 29 21:06:03 2015 +0100
+++ b/TSTreeNode.st	Wed Dec 30 00:18:31 2015 +0100
@@ -1,5 +1,7 @@
 "{ Package: 'stx:libbasic2' }"
 
+"{ NameSpace: Smalltalk }"
+
 Object subclass:#TSTreeNode
 	instanceVariableNames:'key value low high equal'
 	classVariableNames:''
@@ -29,10 +31,10 @@
 !TSTreeNode methodsFor:'private'!
 
 canBeCulled
-	^ self value isNil
-		and: [low isNil]
-		and: [equal isNil]
-		and: [high isNil]
+        ^ self value isNil
+            and: [low isNil
+            and: [equal isNil
+            and: [high isNil]]]
 !
 
 cullNode: aNode
@@ -175,10 +177,10 @@
 !TSTreeNode class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/TSTreeNode.st,v 1.1 2014-04-26 11:13:34 vrany Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/TSTreeNode.st,v 1.1 2014-04-26 11:13:34 vrany Exp $'
+    ^ '$Header$'
 ! !