~ubuntu-branches/ubuntu/jaunty/openjdk-6/jaunty-security

« back to all changes in this revision

Viewing changes to rt/net/sourceforge/jnlp/Parser.java

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose, Edward Nevill, Matthias Klose
  • Date: 2009-03-02 16:18:01 UTC
  • Revision ID: james.westby@ubuntu.com-20090302161801-rubk3yhm8j0au4y1
Tags: 6b14-0ubuntu17
[ Edward Nevill ]
* Remove VFP from asm loop
* Disble the mauve testsuite for armel.

[Matthias Klose]
* Update IcedTea (20090302).

Show diffs side-by-side

added added

removed removed

Lines of Context:
323
323
        Version version = getVersion(node, "version", null);
324
324
        URL location = getRequiredURL(node, "href", base);
325
325
 
326
 
        ExtensionDesc ext = new ExtensionDesc(name, version, location);
 
326
        ExtensionDesc ext = new ExtensionDesc(name, version, location, null);
327
327
 
328
328
        Node dload[] = getChildNodes(node, "ext-download");
329
329
        for (int i=0; i < dload.length; i++) {