Commit b04f35e8 authored by Dan Rubel's avatar Dan Rubel Committed by GitHub

Revert "trace IntelliJ config and install locations on Linux (#6805)" (#6816)

The added printTrace statements are causing problems when running tests locally on Linux.
This reverts commit 546cef52.
parent d0ff41ec
...@@ -318,7 +318,6 @@ class IntelliJValidatorOnLinux extends IntelliJValidator { ...@@ -318,7 +318,6 @@ class IntelliJValidatorOnLinux extends IntelliJValidator {
String name = path.basename(dir.path); String name = path.basename(dir.path);
IntelliJValidator._idToTitle.forEach((String id, String title) { IntelliJValidator._idToTitle.forEach((String id, String title) {
if (name.startsWith('.$id')) { if (name.startsWith('.$id')) {
printTrace('Found IntelliJ config: ${dir.path}');
String version = name.substring(id.length + 1); String version = name.substring(id.length + 1);
String installPath; String installPath;
try { try {
...@@ -327,7 +326,6 @@ class IntelliJValidatorOnLinux extends IntelliJValidator { ...@@ -327,7 +326,6 @@ class IntelliJValidatorOnLinux extends IntelliJValidator {
// ignored // ignored
} }
if (installPath != null && FileSystemEntity.isDirectorySync(installPath)) { if (installPath != null && FileSystemEntity.isDirectorySync(installPath)) {
printTrace('Found IntelliJ installation: $installPath');
String pluginsPath = path.join(dir.path, 'config', 'plugins'); String pluginsPath = path.join(dir.path, 'config', 'plugins');
validators.add(new IntelliJValidatorOnLinux(title, version, pluginsPath)); validators.add(new IntelliJValidatorOnLinux(title, version, pluginsPath));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment