# HG changeset patch
# User Artem Tikhomirov <tikhomirov.artem@gmail.com>
# Date 1299728794 -3600
# Node ID d51f1c6aaa28ad4407ad1afc9f4d8b32fa13362e
# Parent  a5198b6487dc14b36f8c4d537e74656d54994360
Record knowledge copies are not only attribute of Added files

diff -r a5198b6487dc -r d51f1c6aaa28 src/org/tmatesoft/hg/core/HgStatusCommand.java
--- a/src/org/tmatesoft/hg/core/HgStatusCommand.java	Thu Mar 10 03:18:49 2011 +0100
+++ b/src/org/tmatesoft/hg/core/HgStatusCommand.java	Thu Mar 10 04:46:34 2011 +0100
@@ -248,6 +248,7 @@
 		public void copied(Path fnameOrigin, Path fnameAdded) {
 			if (needCopies) {
 				if (matcher == null || matcher.accept(fnameAdded)) {
+					// FIXME in fact, merged files may report 'copied from' as well, correct status kind thus may differ from Added
 					handler.handleStatus(new HgStatus(Added, fnameAdded, fnameOrigin, logHelper));
 				}
 			}