if (allProblems.size() != 0) {
int result = problemsDialog.open(allProblems);
if (result == IProblemsDialog.CANCEL_ID)
return;
else if (result == IProblemsDialog.OK_ID) {
SolveStrategy strategy = problemsDialog.getSolveStrategy(ProblemType.FILE_EXISTS);
if (strategy != null) {
switch (strategy) {
case OVERWRITE_FILES:
itemExistsPolicy = ItemExistsActions.OVERWRITE;
break;