comparison src/org/tmatesoft/hg/core/HgStatusCommand.java @ 150:6b55f10ef54b

Unused variables removed.
author Alexander Kitaev <kitaev@gmail.com>
date Thu, 24 Feb 2011 18:53:33 +0100
parents 1a7a9a20e1f9
children d51f1c6aaa28
comparison
equal deleted inserted replaced
149:868a5a6e9f93 150:6b55f10ef54b
39 public class HgStatusCommand { 39 public class HgStatusCommand {
40 private final HgRepository repo; 40 private final HgRepository repo;
41 41
42 private int startRevision = TIP; 42 private int startRevision = TIP;
43 private int endRevision = WORKING_COPY; 43 private int endRevision = WORKING_COPY;
44 private boolean visitSubRepo = true;
45 44
46 private final Mediator mediator = new Mediator(); 45 private final Mediator mediator = new Mediator();
47 46
48 public HgStatusCommand(HgRepository hgRepo) { 47 public HgStatusCommand(HgRepository hgRepo) {
49 repo = hgRepo; 48 repo = hgRepo;
150 mediator.matcher = pathMatcher; 149 mediator.matcher = pathMatcher;
151 return this; 150 return this;
152 } 151 }
153 152
154 public HgStatusCommand subrepo(boolean visit) { 153 public HgStatusCommand subrepo(boolean visit) {
155 visitSubRepo = visit;
156 throw HgRepository.notImplemented(); 154 throw HgRepository.notImplemented();
157 } 155 }
158 156
159 /** 157 /**
160 * Perform status operation according to parameters set. 158 * Perform status operation according to parameters set.