InspectorView.st
changeset 18797 b035941a8e4d
parent 18795 3ecc82b45023
child 18802 9ce4a2f9a5f4
--- a/InspectorView.st	Wed May 29 15:25:00 2019 +0200
+++ b/InspectorView.st	Wed May 29 22:54:32 2019 +0200
@@ -3239,14 +3239,14 @@
     |s|
 
     "/ UserPreferences current showTypeIndicatorInInspector ifFalse:[^ nil].
+    value isBridgeProxy ifTrue:[
+        "avoid sending out messages"
+        ^ '>>Bridge Proxy<<'
+    ].
     value isProxy ifTrue:[
         "avoid sending out messages"
         ^ '>>Proxy<<'
     ].
-    value isBridgeProxy ifTrue:[
-        "avoid sending out messages"
-        ^ '>>Bridge Proxy<<'
-    ].
     value isLazyValue ifTrue:[
         "do not block on not yet finished Futures et al"
         ^ '>>Lazy value<<'
@@ -3270,7 +3270,7 @@
     ^ value inspectorValueStringInListFor:self
 
     "Created: / 13-06-2012 / 12:50:26 / cg"
-    "Modified (format): / 29-05-2019 / 15:08:48 / Claus Gittinger"
+    "Modified: / 29-05-2019 / 22:54:09 / Claus Gittinger"
 !
 
 stringWithAllClassVarValues