9
9
import com .google .common .base .Joiner ;
10
10
import com .google .common .base .Objects ;
11
11
import com .google .common .collect .ImmutableSet ;
12
- import com .intellij .openapi .diagnostic .Logger ;
13
12
import com .intellij .openapi .module .Module ;
14
13
import com .intellij .openapi .project .Project ;
15
14
import com .intellij .openapi .roots .ProjectRootManager ;
@@ -309,7 +308,8 @@ static Workspace loadUncached(@NotNull Project project) {
309
308
310
309
final String updatedIosRunMessage = config == null ? null : config .getUpdatedIosRunMessage ();
311
310
312
- return new Workspace (root , config , daemonScript , devToolsScript , doctorScript , testScript , runScript , syncScript , toolsScript , sdkHome , requiredIJPluginID , requiredIJPluginMessage , configWarningPrefix , updatedIosRunMessage );
311
+ return new Workspace (root , config , daemonScript , devToolsScript , doctorScript , testScript , runScript , syncScript , toolsScript , sdkHome ,
312
+ requiredIJPluginID , requiredIJPluginMessage , configWarningPrefix , updatedIosRunMessage );
313
313
}
314
314
315
315
@ VisibleForTesting
@@ -393,7 +393,8 @@ private static VirtualFile findContainingWorkspaceFile(@NotNull VirtualFile dir)
393
393
return child ;
394
394
}
395
395
dir = dir .getParent ();
396
- } catch (InvalidVirtualFileAccessException ex ) {
396
+ }
397
+ catch (InvalidVirtualFileAccessException ex ) {
397
398
// The VFS is out of sync.
398
399
return null ;
399
400
}
@@ -403,8 +404,6 @@ private static VirtualFile findContainingWorkspaceFile(@NotNull VirtualFile dir)
403
404
return null ;
404
405
}
405
406
406
- private static final Logger LOG = Logger .getInstance (Workspace .class );
407
-
408
407
public String convertPath (String path ) {
409
408
if (path .startsWith (Workspace .BAZEL_URI_SCHEME )) {
410
409
return getRoot ().getPath () + path .substring (Workspace .BAZEL_URI_SCHEME .length ());
0 commit comments