As the comment says, allow passing -Ddirect=true to force direct invocation

(direct meaning we don't fork off a new JVM).
This commit is contained in:
Michael Bayne
2007-08-07 23:36:06 +00:00
parent 201c5b03c7
commit 189cabfa5e
@@ -835,7 +835,8 @@ public abstract class Getdown extends Thread
*/
protected boolean invokeDirect ()
{
return false;
// allow passing -Ddirect=true to force direct invocation
return Boolean.getBoolean("direct");
}
/**