diff options
author | Adam Domurad <[email protected]> | 2012-07-10 10:35:52 -0400 |
---|---|---|
committer | Adam Domurad <[email protected]> | 2012-07-10 10:35:52 -0400 |
commit | b70936939cf57d11448538dbbcb5ecc535a603dc (patch) | |
tree | d5b191c9f887ae54af64138ac75c40f3d0bbf623 /netx/net/sourceforge/jnlp/Parser.java | |
parent | d61edd76c23e6a1e85a117f39c77ae6a9ac5f8ca (diff) |
Refactor Object launchType; to LaunchDesc launchType; in JNLPFile
Diffstat (limited to 'netx/net/sourceforge/jnlp/Parser.java')
-rw-r--r-- | netx/net/sourceforge/jnlp/Parser.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netx/net/sourceforge/jnlp/Parser.java b/netx/net/sourceforge/jnlp/Parser.java index a823562..60cd9b4 100644 --- a/netx/net/sourceforge/jnlp/Parser.java +++ b/netx/net/sourceforge/jnlp/Parser.java @@ -609,7 +609,7 @@ class Parser { * @param parent the parent node * @throws ParseException if the JNLP file is invalid */ - public Object getLauncher(Node parent) throws ParseException { + public LaunchDesc getLauncher(Node parent) throws ParseException { // check for other than one application type if (1 < getChildNodes(parent, "applet-desc").length + getChildNodes(parent, "application-desc").length |