src/share/classes/java/lang/invoke/CallSite.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/classes/java/lang/invoke/CallSite.java	Fri Jul 11 20:08:45 2014
--- new/src/share/classes/java/lang/invoke/CallSite.java	Fri Jul 11 20:08:45 2014

*** 317,327 **** --- 317,327 ---- site = (CallSite) binding; } else { throw new ClassCastException("bootstrap method failed to produce a CallSite"); } if (!site.getTarget().type().equals(type)) ! throw new WrongMethodTypeException("wrong type: "+site.getTarget()); ! throw wrongTargetType(site.getTarget(), type); } catch (Throwable ex) { BootstrapMethodError bex; if (ex instanceof BootstrapMethodError) bex = (BootstrapMethodError) ex; else

src/share/classes/java/lang/invoke/CallSite.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File