package bluej.parser;
import java.io.File;
import java.util.Properties;
import bluej.Boot;
import bluej.Config;
| This class just provides a way to ensure that the Config system
| is initialized prior to running certain tests.
|
| @author Davin McCall
|
public class InitConfig
{
static {
File bluejLibDir = Boot.getBluejLibDir();
Properties p = new Properties();
p.put("bluej.debug", "true");
Config.initialise(bluejLibDir, p, false);
}
public static void init()
{
}
}
top,
use,
map,
class InitConfig
. init
21 neLoCode
+ 3 LoComm