JavaDecompiler.st
changeset 119 440cfcb9d0c1
parent 108 235be8e8bd8c
child 124 e30646ab8a71
--- a/JavaDecompiler.st	Sat Jul 06 18:15:45 1996 +0000
+++ b/JavaDecompiler.st	Sat Jul 06 18:16:23 1996 +0000
@@ -337,6 +337,10 @@
         aStream cr.
 "/        aStream showCR:'decompiling ' , classToCompileFor name , '>>' , (who at:2) , ':'.
         aStream showCR:'decompiling ' , aJavaMethod displayString , ':'.
+        aJavaMethod isStatic ifTrue:[
+            aStream show:'static method'.
+        ].
+        aStream cr.
         aStream cr.
     ].
 
@@ -620,6 +624,6 @@
 !JavaDecompiler  class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaDecompiler.st,v 1.18 1996/07/02 18:37:53 cg Exp $'
+    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaDecompiler.st,v 1.19 1996/07/06 18:16:23 cg Exp $'
 ! !
 JavaDecompiler initialize!