comparison src/org/tmatesoft/hg/core/HgIncomingCommand.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
122 * Full information about incoming changes 122 * Full information about incoming changes
123 * 123 *
124 * @throws HgException 124 * @throws HgException
125 * @throws CancelledException 125 * @throws CancelledException
126 */ 126 */
127 public void executeFull(final HgChangesetHandler handler) throws HgException/*FIXME specific type*/, HgCallbackTargetException, CancelledException { 127 public void executeFull(final HgChangesetHandler handler) throws HgException/*FIXME specific type*/, HgException, CancelledException {
128 if (handler == null) { 128 if (handler == null) {
129 throw new IllegalArgumentException("Delegate can't be null"); 129 throw new IllegalArgumentException("Delegate can't be null");
130 } 130 }
131 final List<Nodeid> common = getCommon(); 131 final List<Nodeid> common = getCommon();
132 HgBundle changegroup = remoteRepo.getChanges(common); 132 HgBundle changegroup = remoteRepo.getChanges(common);