compilation fixed

This commit is contained in:
Alexey Kudravtsev
2011-10-21 20:03:07 +04:00
parent 5452af70e7
commit ca9e0b19b4
2 changed files with 7 additions and 0 deletions
@@ -91,6 +91,11 @@ public class CvsResultEx implements CvsResult {
return myErrors;
}
@Override
public boolean hasNoErrors() {
return false;
}
public boolean finishedUnsuccessfully(CvsHandler handler) {
checkIsCanceled(handler);
if (hasErrors()) return true;
@@ -38,4 +38,6 @@ public interface CvsResult {
void addError(VcsException error);
List<VcsException> getErrorsAndWarnings();
boolean hasNoErrors();
}