Mercurial > hg4j
comparison src/org/tmatesoft/hg/repo/HgWorkingCopyStatusCollector.java @ 142:37a34044e6bd
More reasonable use of path normalizer and path.source
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Thu, 17 Feb 2011 05:06:07 +0100 |
parents | 8248aae33f7d |
children | 1a7a9a20e1f9 |
comparison
equal
deleted
inserted
replaced
141:8248aae33f7d | 142:37a34044e6bd |
---|---|
128 inspector.ignored(pp.path(fname)); | 128 inspector.ignored(pp.path(fname)); |
129 } else if (knownEntries.remove(fname.toString())) { | 129 } else if (knownEntries.remove(fname.toString())) { |
130 // modified, added, removed, clean | 130 // modified, added, removed, clean |
131 if (collect != null) { // need to check against base revision, not FS file | 131 if (collect != null) { // need to check against base revision, not FS file |
132 checkLocalStatusAgainstBaseRevision(baseRevFiles, collect, baseRevision, fname, f, inspector); | 132 checkLocalStatusAgainstBaseRevision(baseRevFiles, collect, baseRevision, fname, f, inspector); |
133 baseRevFiles.remove(fname); | 133 baseRevFiles.remove(fname.toString()); |
134 } else { | 134 } else { |
135 checkLocalStatusAgainstFile(fname, f, inspector); | 135 checkLocalStatusAgainstFile(fname, f, inspector); |
136 } | 136 } |
137 } else { | 137 } else { |
138 inspector.unknown(pp.path(fname)); | 138 inspector.unknown(pp.path(fname)); |