[Ikvm-commit] ikvm/runtime DynamicTypeWrapper.cs,1.256,1.257
Brought to you by:
jfrijters
|
From: Jeroen F. <jfr...@us...> - 2014-11-11 15:28:50
|
Update of /cvsroot/ikvm/ikvm/runtime In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv15859 Modified Files: DynamicTypeWrapper.cs Log Message: Added comment about changed method overriding semantics in JDK 8u11. Index: DynamicTypeWrapper.cs =================================================================== RCS file: /cvsroot/ikvm/ikvm/runtime/DynamicTypeWrapper.cs,v retrieving revision 1.256 retrieving revision 1.257 diff -C2 -d -r1.256 -r1.257 *** DynamicTypeWrapper.cs 11 Nov 2014 15:27:34 -0000 1.256 --- DynamicTypeWrapper.cs 11 Nov 2014 15:28:48 -0000 1.257 *************** *** 2470,2473 **** --- 2470,2475 ---- // not the algorithm specified in section 5.4.5 of the JavaSE7 JVM spec // see http://weblog.ikvm.net/PermaLink.aspx?guid=bde44d8b-7ba9-4e0e-b3a6-b735627118ff and subsequent posts + // UPDATE as of JDK 7u65 and JDK 8u11, the algorithm changed again to handle package private methods differently + // this code has not been updated to reflect these changes (we're still at JDK 8 GA level) explicitOverride = false; MethodWrapper topPublicOrProtectedMethod = null; |