~ubuntu-branches/ubuntu/natty/icedtea-web/natty-proposed

« back to all changes in this revision

Viewing changes to netx/net/sourceforge/jnlp/runtime/Boot13.java

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-11-24 13:23:28 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20101124132328-2xb9z39vxga63vr9
Tags: 1.0~20101124-0ubuntu1
* Update to hg 20101124.
* Fix xulrunner dependencies for natty.
* Build-depend on pkg-config and libgtk2.0-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
 
94
94
        Thread.currentThread().setContextClassLoader(b); // try to prevent getting the non-policy version of classes
95
95
 
96
 
        Class c = b.loadClass("net.sourceforge.jnlp.runtime.Boot");
97
 
        Method main = c.getDeclaredMethod("main", new Class[] {String[].class} );
 
96
        Class<?> c = b.loadClass("net.sourceforge.jnlp.runtime.Boot");
 
97
        Method main = c.getDeclaredMethod("main", new Class<?>[] {String[].class} );
98
98
 
99
99
        main.invoke(null, new Object[] { args } );
100
100
    }