#QUALITY by cg
authorClaus Gittinger <cg@exept.de>
Wed, 06 Feb 2019 20:40:27 +0100
changeset 23678 acb36818ea6b
parent 23677 1543d88d416d
child 23679 3f4a3d56ed3e
#QUALITY by cg class: Smalltalk class comment/format in: #ignoreHalt changed: #verbose category of: #silent
Smalltalk.st
--- a/Smalltalk.st	Wed Feb 06 20:37:38 2019 +0100
+++ b/Smalltalk.st	Wed Feb 06 20:40:27 2019 +0100
@@ -2016,11 +2016,12 @@
      Usually, this is done in standAlone applications"
 
     IgnoreHalt isNil ifTrue:[
-	^  self isStandAloneApp
+        ^ self isStandAloneApp
     ].
     ^ IgnoreHalt
 
     "Created: / 18-11-2010 / 11:20:16 / cg"
+    "Modified: / 06-02-2019 / 20:39:16 / Claus Gittinger"
 !
 
 ignoreHalt:aBoolean
@@ -2039,8 +2040,18 @@
     "Created: / 18-11-2010 / 11:20:27 / cg"
 !
 
+silent
+    "returns the Silent class variable."
+
+     ^ Silent ? false
+
+    "Created: / 06-02-2019 / 20:36:51 / Claus Gittinger"
+!
+
 verbose
-    ^ Verbose
+    ^ Verbose ? false
+
+    "Modified: / 06-02-2019 / 20:38:44 / Claus Gittinger"
 !
 
 verbose:aBoolean
@@ -2436,14 +2447,6 @@
 
 !Smalltalk class methodsFor:'message control'!
 
-silent
-    "returns the Silent class variable."
-
-     ^ Silent ? false
-
-    "Created: / 06-02-2019 / 20:36:51 / Claus Gittinger"
-!
-
 silentLoading
     "returns the Silentloading class variable, which globally controls if compilation
      messages are shown on the transcript during a fileIn."