CCWPlugin.logWarning("sourceFile " + sourceFile + " does not exist form sourceAttachmentPath " + sourceAttachmentPath);
// Nothing can be done
} else if (sourceFile.isDirectory()) {
final File maybeSourceFile = sourceAbsolutePath.append(searchedPath + "/" + searchedFileName).toFile();
if (maybeSourceFile.exists()) {
return new LocalFileStorageEditorInput(
new LocalFileStorage(maybeSourceFile));
} else {
// Nothing, alas
}
} else {