* @return foremost classpath
*/
private String getForeMostClassPath(Properties properties, AbstractLanguageHandler handler, Logger logger) {
String systemClassPath = properties.getProperty("java.class.path");
AbstractGrinderClassPathProcessor classPathProcessor = handler.getClassPathProcessor();
return classPathProcessor.filterForeMostClassPath(systemClassPath, logger) + File.pathSeparator
+ classPathProcessor.filterPatchClassPath(systemClassPath, logger);
}
/**
* Filter classpath to prevent too many instrumentation.