diff -r 027fd47d7c4b -r e661836af8e6 src/JavaClass.st --- a/src/JavaClass.st Sat May 12 19:40:19 2012 +0000 +++ b/src/JavaClass.st Sat May 12 20:12:17 2012 +0000 @@ -1300,7 +1300,7 @@ (selector includes: $() ifTrue:[ "Java selector, search static methods" - method := methodDictionary at:selector. + method := methodDictionary at:selector ifAbsent:[nil]. method notNil ifTrue:[ method isStatic ifTrue:[ ^ method @@ -1336,8 +1336,8 @@ ]. "Created: / 19-09-2011 / 23:33:06 / Jan Kurs " - "Modified: / 06-12-2011 / 23:19:54 / Jan Vrany " "Modified: / 10-04-2012 / 16:47:31 / kursjan" + "Modified: / 12-05-2012 / 21:01:08 / Jan Vrany " ! ! !JavaClass methodsFor:'java initialization'!