JavaResolver.st
changeset 750 d594c0664435
parent 749 e898eaeff091
child 2152 1cbdfbcc685c
--- a/JavaResolver.st	Fri Aug 19 08:58:19 2011 +0000
+++ b/JavaResolver.st	Sat Aug 20 21:30:18 2011 +0000
@@ -626,10 +626,10 @@
     result ifNil: [ self throwNoSuchMethodError ].
     (result isAbstract and:[result javaClass isInterface not and:[ class isAbstract not ]]) 
         ifTrue: [ self throwAbstractMethodError ].
-    (self 
+    true "FIXME does not work with saxon demo - q&d hack t make esug demo work" "(self 
         checkPermissionsForMethod: result
         from: aJavaMethodRef classRef owner
-        to: class) ifFalse: [ self throwIllegalAccessError ].
+        to: class)" ifFalse: [ self throwIllegalAccessError ].
     ^ result.
 
     "Otherwise, let <E, L1> be the class or interface in which the referenced method is
@@ -641,6 +641,7 @@
     "Created: / 11-04-2011 / 19:45:34 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
     "Modified: / 14-04-2011 / 00:01:34 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
     "Modified: / 10-08-2011 / 22:44:14 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 19-08-2011 / 14:33:56 / cg"
 !
 
 resolveStaticMethodIndentifiedByRef: aJavaMethodRef 
@@ -747,6 +748,14 @@
 
 !JavaResolver class methodsFor:'documentation'!
 
+version
+    ^ '$Id$'
+!
+
+version_CVS
+    ^ '§Header: /cvs/stx/stx/libjava/JavaResolver.st,v 1.2 2011/08/19 12:34:39 cg Exp §'
+!
+
 version_SVN
     ^ '$Id$'
 ! !