Mercurial > hg4j
diff src/org/tmatesoft/hg/core/CatCommand.java @ 121:b1d6208fb517
Conditionally apply filters to file content
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Fri, 04 Feb 2011 03:37:09 +0100 |
parents | c0cc2535462c |
children | 7567f4a42fe5 |
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/core/CatCommand.java Fri Feb 04 03:23:47 2011 +0100 +++ b/src/org/tmatesoft/hg/core/CatCommand.java Fri Feb 04 03:37:09 2011 +0100 @@ -80,6 +80,6 @@ } else { revToExtract = localRevision; } - dataFile.content(revToExtract, sink); + dataFile.content(revToExtract, sink, true); } }