Mercurial > hg4j
comparison src/org/tmatesoft/hg/core/HgStatusCommand.java @ 418:528b6780a8bd
A bit of FIXME cleanup (mostly degraded to TODO post 1.0), comments and javadoc
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Thu, 22 Mar 2012 21:02:20 +0100 |
parents | 8107b95f4280 |
children | 7f136a3fa671 |
comparison
equal
deleted
inserted
replaced
417:ccd7d25e5aea | 418:528b6780a8bd |
---|---|
252 handler.handleStatus(new HgStatus(Removed, fname, logHelper)); | 252 handler.handleStatus(new HgStatus(Removed, fname, logHelper)); |
253 } | 253 } |
254 } | 254 } |
255 public void copied(Path fnameOrigin, Path fnameAdded) { | 255 public void copied(Path fnameOrigin, Path fnameAdded) { |
256 if (needCopies) { | 256 if (needCopies) { |
257 // FIXME in fact, merged files may report 'copied from' as well, correct status kind thus may differ from Added | 257 // TODO post-1.0 in fact, merged files may report 'copied from' as well, correct status kind thus may differ from Added |
258 handler.handleStatus(new HgStatus(Added, fnameAdded, fnameOrigin, logHelper)); | 258 handler.handleStatus(new HgStatus(Added, fnameAdded, fnameOrigin, logHelper)); |
259 } | 259 } |
260 } | 260 } |
261 public void missing(Path fname) { | 261 public void missing(Path fname) { |
262 if (needMissing) { | 262 if (needMissing) { |