On 5/23/2018 8:56 PM, Doug Breaux wrote:
> This is the latest IBM JDK 8. Or at least the latest that works with our
> version WebSphere, but it's very recent. The build date is 20180214. And this
> WebSphere cannot use Oracle or OpenJDK.
Thanks. Could you also check if your IBM JDK 8 is able to run this:
java.util.Map<String, List<String>> lhm = new
java.util.LinkedHashMap<>();
Class<? extends LinkedHashMap> c = lhm.getClass();
Method m = c.getMethod("keySet");
Object ks = m.invoke(lhm);
Method m2 = m.getReturnType().getMethod("size");
Object s = m2.invoke(ks);
System.out.println("COPY ME: " + s);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]