You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/com.google.cloud.tools.eclipse.appengine.libraries/src/com/google/cloud/tools/eclipse/appengine/libraries/repository/LibraryClasspathContainerResolverService.java
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -170,7 +170,13 @@ public IStatus resolveContainer(
170
170
newIJavaProject[] {javaProject},
171
171
newIClasspathContainer[] {container},
172
172
subMonitor.newChild(1));
173
-
serializer.saveContainer(javaProject, container);
173
+
if (!javaProject.getProject().getWorkspace().isTreeLocked()) {
174
+
// The classpath container update may have been triggered as part of a resource change
175
+
// in which case the workspace is locked and so we cannot serialize out our
176
+
// container cache. There will be other opportunities.
0 commit comments