Fully qualified name to access Object
authorJaroslav Tulach <jtulach@netbeans.org>
Mon, 15 Feb 2016 05:26:13 +0100
changeset 1052aca779a0fcec
parent 1051 d0e6c8f97dc3
child 1053 ed4b25eb66f3
Fully qualified name to access Object
boot/src/test/java/org/netbeans/html/boot/impl/JsClassLoaderBase.java
     1.1 --- a/boot/src/test/java/org/netbeans/html/boot/impl/JsClassLoaderBase.java	Mon Feb 15 05:23:17 2016 +0100
     1.2 +++ b/boot/src/test/java/org/netbeans/html/boot/impl/JsClassLoaderBase.java	Mon Feb 15 05:26:13 2016 +0100
     1.3 @@ -131,7 +131,7 @@
     1.4          Method st = methodClass.getMethod("both", double.class, double.class);
     1.5          Throwable ex;
     1.6          try {
     1.7 -            Object arr = st.invoke(null, 2, 5);
     1.8 +            java.lang.Object arr = st.invoke(null, 2, 5);
     1.9              ex = null;
    1.10          } catch (InvocationTargetException invoke) {
    1.11              ex = invoke.getTargetException();