comparison src/org/tmatesoft/hg/repo/HgRemoteRepository.java @ 203:66fd2c73c56f

Basic test for HgOutgoingCommand. Handle cases with no outgoing changes in RepositoryComparator
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Tue, 26 Apr 2011 15:52:33 +0200
parents 706bcc7cfee4
children 1bf0a5af2d5d
comparison
equal deleted inserted replaced
202:706bcc7cfee4 203:66fd2c73c56f
347 } catch (IOException ex) { 347 } catch (IOException ex) {
348 throw new HgException(ex); 348 throw new HgException(ex);
349 } 349 }
350 } 350 }
351 351
352 @Override
353 public String toString() {
354 return getClass().getSimpleName() + '[' + getLocation() + ']';
355 }
356
352 private HgLookup getLookupHelper() { 357 private HgLookup getLookupHelper() {
353 if (lookupHelper == null) { 358 if (lookupHelper == null) {
354 lookupHelper = new HgLookup(); 359 lookupHelper = new HgLookup();
355 } 360 }
356 return lookupHelper; 361 return lookupHelper;