changeset in /hg/icedtea6: 2009-07-07 Omair Majid <omajid at redh...
Omair Majid
omajid at redhat.com
Tue Jul 7 10:43:46 PDT 2009
changeset b4bb02c70835 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=b4bb02c70835
description:
2009-07-07 Omair Majid <omajid at redhat.com>
* rt/net/sourceforge/jnlp/Parser.java
(getExtension): Fix typo in node name.
diffstat:
2 files changed, 9 insertions(+), 4 deletions(-)
ChangeLog | 5 +++++
rt/net/sourceforge/jnlp/Parser.java | 8 ++++----
diffs (30 lines):
diff -r 742216fd1f8f -r b4bb02c70835 ChangeLog
--- a/ChangeLog Tue Jul 07 10:12:31 2009 -0400
+++ b/ChangeLog Tue Jul 07 13:44:35 2009 -0400
@@ -1,3 +1,8 @@ 2009-07-07 Omair Majid <omajid at redhat.
+2009-07-07 Omair Majid <omajid at redhat.com>
+
+ * rt/net/sourceforge/jnlp/Parser.java
+ (getExtension): Fix typo in node name.
+
2009-07-07 Omair Majid <omajid at redhat.com>
* rt/net/sourceforge/jnlp/resources/Messages.properties: Add
diff -r 742216fd1f8f -r b4bb02c70835 rt/net/sourceforge/jnlp/Parser.java
--- a/rt/net/sourceforge/jnlp/Parser.java Tue Jul 07 10:12:31 2009 -0400
+++ b/rt/net/sourceforge/jnlp/Parser.java Tue Jul 07 13:44:35 2009 -0400
@@ -336,10 +336,10 @@ class Parser {
Node dload[] = getChildNodes(node, "ext-download");
for (int i=0; i < dload.length; i++) {
- boolean lazy = "lazy".equals(getAttribute(node, "download", "eager"));
-
- ext.addPart(getRequiredAttribute(node, "ext-part", null),
- getAttribute(node, "part", null),
+ boolean lazy = "lazy".equals(getAttribute(dload[i], "download", "eager"));
+
+ ext.addPart(getRequiredAttribute(dload[i], "ext-part", null),
+ getAttribute(dload[i], "part", null),
lazy);
}
More information about the distro-pkg-dev
mailing list