diff --git a/resources/bundles/org.eclipse.core.resources/src/org/eclipse/core/internal/localstore/FileSystemResourceManager.java b/resources/bundles/org.eclipse.core.resources/src/org/eclipse/core/internal/localstore/FileSystemResourceManager.java index fd21f43c651..8bc2c11d14d 100644 --- a/resources/bundles/org.eclipse.core.resources/src/org/eclipse/core/internal/localstore/FileSystemResourceManager.java +++ b/resources/bundles/org.eclipse.core.resources/src/org/eclipse/core/internal/localstore/FileSystemResourceManager.java @@ -1148,11 +1148,41 @@ public void updateLocalSync(ResourceInfo info, long localSyncInfo) { } /** - * The target must exist in the workspace. The content InputStream is - * closed even if the method fails. If the force flag is false we only write - * the file if it does not exist or if it is already local and the timestamp - * has NOT changed since last synchronization, otherwise a CoreException - * is thrown. + * The target must exist in the workspace and must remain existing throughout + * the execution of this method. The {@code content} {@link InputStream} is + * closed even if the method fails. If the {@link IResource#FORCE} flag is not + * set in {@code updateFlags}, we only write the file if it does not exist or if + * it is already local and the timestamp has not changed since last + * synchronization, otherwise a {@link CoreException} is thrown. + * + * @param target the file to write to + * @param content a stream with the contents to write to {@code target} + * @param fileInfo the info object for the {@code target} file + * @param updateFlags update flags as defined in {@link IResource} + * @param append whether the {@code content} stream shall be appended to + * the existing contents of {@code target} + * @param monitor the progress monitor to report to + * + * @throws CoreException in any of the following cases: + *