Skip to content

Commit 7997be2

Browse files
committed
Fix bug in SynchronizeProjectViewJob
1 parent 9542833 commit 7997be2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bundles/com.salesforce.bazel.eclipse.core/src/com/salesforce/bazel/eclipse/core/model/SynchronizeProjectViewJob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ public IStatus runInWorkspace(IProgressMonitor monitor) throws CoreException {
652652

653653
// during synchronization resource changes may occur; however, they are triggered by the synchronization activities
654654
// therefore we suspend cache invalidation of the model due to resource changes
655-
workspace.getModelManager().getResourceChangeProcessor().suspendInvalidationFor(workspace);
655+
workspace.getModelManager().getResourceChangeProcessor().suspendInvalidationFor(workspace.getModel());
656656

657657
// trigger loading of the project view
658658
projectView = workspace.getBazelProjectView();

0 commit comments

Comments
 (0)