Skip to content

Commit 1efcbc4

Browse files
committed
Fixed setting name and space
1 parent d11a41b commit 1efcbc4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

runner/org.eclipse.rcptt.runner/src/org/eclipse/rcptt/runner/util/TargetPlatformChecker.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ private void initializeTargetPlatform() throws CoreException {
7979
targetPlatform = null;
8080
compatibility = null;
8181
String location = PDELocationUtils.getProductLocation(conf.location).getAbsolutePath();
82-
boolean progressEnabled = Boolean.parseBoolean(System.getProperty("Drcptt.runner.progress", "true"));
82+
boolean progressEnabled = Boolean.parseBoolean(System.getProperty("rcptt.runner.progress", "true"));
8383

84-
PrintStreamMonitor outMonitor = new PrintStreamMonitor(progressEnabled );
84+
PrintStreamMonitor outMonitor = new PrintStreamMonitor(progressEnabled);
8585
if (conf.config != null) {
8686
targetPlatform = TargetPlatformManager.createTargetPlatform(location, outMonitor);
8787
Map<String, Version> versions = targetPlatform.getVersions();

0 commit comments

Comments
 (0)