code cleanup & refactoring
authorClaus Gittinger <cg@exept.de>
Mon, 13 Feb 2006 09:55:37 +0100
changeset 2099 306e2edb75bf
parent 2098 37ea7570cd6b
child 2100 17cc7c9aa82d
code cleanup & refactoring
ApplicationModel.st
--- a/ApplicationModel.st	Mon Feb 13 09:55:11 2006 +0100
+++ b/ApplicationModel.st	Mon Feb 13 09:55:37 2006 +0100
@@ -2513,16 +2513,16 @@
 resolveName:something
     "return the class from something, a class, symbol, string or nil.
      first we are looking in the namespace of the application, then in the
-     current namespace and finally in Smalltalk
-    "
+     current namespace and finally in Smalltalk"
+
     ^ self resolveName:something inClass:self class
 !
 
 resolveName:something inClass:aClass
     "return the class from something, a class, symbol, string or nil.
      first we are looking in the namespace of the application, 
-     then in the current namespace and finally in Smalltalk
-    "
+     then in the current namespace and finally in Smalltalk"
+
     |cls|
 
     aClass notNil ifTrue:[
@@ -2902,7 +2902,7 @@
 !ApplicationModel class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/ApplicationModel.st,v 1.221 2006-02-01 12:05:29 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/ApplicationModel.st,v 1.222 2006-02-13 08:55:37 cg Exp $'
 ! !
 
 ApplicationModel initialize!