JavaClassReader.st
changeset 475 9f72432385fc
parent 470 b8552cd2407b
child 547 38870f6447d0
--- a/JavaClassReader.st	Wed Dec 02 23:24:00 1998 +0000
+++ b/JavaClassReader.st	Thu Dec 03 12:15:08 1998 +0000
@@ -906,18 +906,23 @@
         self skipAttribute:attributeName.
         ^ self.
     ].
+    (attributeName = 'FastJavac1.0') ifTrue:[
+"/        ('JAVA [info]: unhandled attribute: ' , attributeName) infoPrintCR.
+        self skipAttribute:attributeName.
+        ^ self.
+    ].
     (attributeName = 'AbsoluteSourcePath') ifTrue:[
         ('JAVA [info]: unhandled attribute: ' , attributeName) infoPrintCR.
         self skipAttribute:attributeName.
         ^ self.
     ].
     (attributeName = 'Synthetic') ifTrue:[
-        ('JAVA [info]: unhandled attribute: ' , attributeName) infoPrintCR.
+"/        ('JAVA [info]: unhandled attribute: ' , attributeName) infoPrintCR.
         self skipAttribute:attributeName.
         ^ self.
     ].
     (attributeName = 'InnerClasses') ifTrue:[
-        ('JAVA [info]: unhandled attribute: ' , attributeName) infoPrintCR.
+"/        ('JAVA [info]: unhandled attribute: ' , attributeName) infoPrintCR.
         self skipAttribute:attributeName.
         ^ self.
     ].
@@ -932,7 +937,7 @@
     ('JAVA [warning]: unrecognized attribute: ' , attributeName) infoPrintCR.
     self skipAttribute:attributeName.
 
-    "Modified: / 16.10.1998 / 12:51:59 / cg"
+    "Modified: / 3.12.1998 / 13:13:42 / cg"
 !
 
 readAttributeFor:something
@@ -2140,6 +2145,6 @@
 !JavaClassReader class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaClassReader.st,v 1.81 1998/11/27 00:46:20 cg Exp $'
+    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaClassReader.st,v 1.82 1998/12/03 12:14:15 cg Exp $'
 ! !
 JavaClassReader initialize!