Skip to content
Snippets Groups Projects
Commit ad3ee2a1 authored by tcarver's avatar tcarver
Browse files

JNLP properties need to begin with jnlp

parent 0a3441ff
No related branches found
No related tags found
No related merge requests found
......@@ -285,6 +285,16 @@ public class ArtemisMain extends Splash
**/
protected void readArgsAndOptions(final String [] args, final JFrame f)
{
// JNLP properties
if(System.getProperty("jnlp.chado") != null)
System.setProperty("chado", System.getProperty("jnlp.chado"));
if(System.getProperty("jnlp.offset") != null)
System.setProperty("offset", System.getProperty("jnlp.offset"));
if(System.getProperty("jnlp.artemis.environment") != null)
System.setProperty("artemis.environment", System.getProperty("jnlp.artemis.environment"));
if(System.getProperty("jnlp.sanger_options") != null)
System.setProperty("sanger_options", System.getProperty("jnlp.sanger_options"));
if(args.length == 0)
{
if(System.getProperty("chado") != null &&
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment