Mercurial > hg4j
comparison src/org/tmatesoft/hg/core/HgFileInformer.java @ 374:c7a513d8ce20
Bad message fixed
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Tue, 10 Jan 2012 01:20:47 +0400 |
parents | 2fadf8695f8a |
children | 0ae53c32ecef |
comparison
equal
deleted
inserted
replaced
373:dd492acd2431 | 374:c7a513d8ce20 |
---|---|
149 if (toExtract != null) { | 149 if (toExtract != null) { |
150 fileRevision = new HgFileRevision(repo, toExtract, dataFile.getPath()); | 150 fileRevision = new HgFileRevision(repo, toExtract, dataFile.getPath()); |
151 checkResult = new Status(Status.Kind.OK, String.format("File %s, revision %s found at changeset %s", dataFile.getPath(), toExtract.shortNotation(), cset.shortNotation())); | 151 checkResult = new Status(Status.Kind.OK, String.format("File %s, revision %s found at changeset %s", dataFile.getPath(), toExtract.shortNotation(), cset.shortNotation())); |
152 return checkResult; | 152 return checkResult; |
153 } | 153 } |
154 checkResult = new Status(Status.Kind.OK, String.format("File %s nor its origins were not known at repository %s revision", file, cset.shortNotation())); | 154 checkResult = new Status(Status.Kind.OK, String.format("File %s nor its origins were known at repository %s revision", file, cset.shortNotation())); |
155 return checkResult; | 155 return checkResult; |
156 } | 156 } |
157 | 157 |
158 /** | 158 /** |
159 * Re-get latest check status object | 159 * Re-get latest check status object |