Skip to content
Snippets Groups Projects
Commit 02005db3 authored by brinn's avatar brinn
Browse files

Adapt LocalProcessor to new IImmutableCopier interface.

SVN: 24107
parent 5b8cf906
No related branches found
No related tags found
No related merge requests found
......@@ -333,8 +333,8 @@ public final class LocalProcessor implements IPathHandler, IRecoverableTimerTask
"Creating extra copy of directory '%s' to '%s'.", path
.getAbsolutePath(), tempDir.getAbsoluteFile()));
}
final boolean ok = copier.copyImmutably(path, tempDir, null);
if (ok == false)
final Status status = copier.copyImmutably(path, tempDir, null);
if (status.isError())
{
notificationLog.error(String.format("Creating extra copy of '%s' failed.", path
.getAbsolutePath()));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment