Mercurial > hg4j
comparison src/org/tmatesoft/hg/core/HgOutgoingCommand.java @ 275:6d1804fe0ed7
Issue 10: Report file content length with respect of metadata. Respect dirstate parents for WC's status. Exceptions to keep useful attributes of the location
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Thu, 25 Aug 2011 21:35:03 +0200 |
parents | 41a778e3fd31 |
children | 981f9f50bb6c |
comparison
equal
deleted
inserted
replaced
274:9fb50c04f03c | 275:6d1804fe0ed7 |
---|---|
107 /** | 107 /** |
108 * Complete information about outgoing changes | 108 * Complete information about outgoing changes |
109 * | 109 * |
110 * @param handler delegate to process changes | 110 * @param handler delegate to process changes |
111 */ | 111 */ |
112 public void executeFull(final HgChangesetHandler handler) throws HgRemoteConnectionException, HgCallbackTargetException, CancelledException { | 112 public void executeFull(final HgChangesetHandler handler) throws HgRemoteConnectionException, HgException, CancelledException { |
113 if (handler == null) { | 113 if (handler == null) { |
114 throw new IllegalArgumentException("Delegate can't be null"); | 114 throw new IllegalArgumentException("Delegate can't be null"); |
115 } | 115 } |
116 final ProgressSupport ps = getProgressSupport(handler); | 116 final ProgressSupport ps = getProgressSupport(handler); |
117 final CancelSupport cs = getCancelSupport(handler); | 117 final CancelSupport cs = getCancelSupport(handler); |