If an exception is thrown from an editor's method, call this method to abort the editor. @throws SVNException
702703704705706707708709710711712
SVNErrorManager.error(err, SVNLogType.WC); } if (!changed) { try { commitEditor.abortEdit(); } catch (SVNException e) {} return SVNCommitInfo.NULL; } for (int i = 0; i < newPaths.size(); i++) { commitEditor.closeDir();
713714715716717718719720721722723
} info = commitEditor.closeEdit(); } finally { if (!changed || info == null) { try { commitEditor.abortEdit(); } catch (SVNException e) { // } } }
10811082108310841085108610871088108910901091
dispatchEvent(SVNEventFactory.createErrorEvent(err), ISVNEventHandler.UNKNOWN); continue; } finally { if (info == null && commitEditor != null) { try { commitEditor.abortEdit(); } catch (SVNException e) { // } } if (tmpFiles != null) {