Mercurial > hg4j
diff 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 |
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/core/HgFileInformer.java Fri Jan 06 01:12:35 2012 +0300 +++ b/src/org/tmatesoft/hg/core/HgFileInformer.java Tue Jan 10 01:20:47 2012 +0400 @@ -151,7 +151,7 @@ checkResult = new Status(Status.Kind.OK, String.format("File %s, revision %s found at changeset %s", dataFile.getPath(), toExtract.shortNotation(), cset.shortNotation())); return checkResult; } - checkResult = new Status(Status.Kind.OK, String.format("File %s nor its origins were not known at repository %s revision", file, cset.shortNotation())); + checkResult = new Status(Status.Kind.OK, String.format("File %s nor its origins were known at repository %s revision", file, cset.shortNotation())); return checkResult; }