Mercurial > hg4j
comparison src/org/tmatesoft/hg/core/HgFileRevision.java @ 518:0d5e1ea7955e
Tests for HgLogCommand#execute(HgChangesetHandler) with various combination of follow renames and ancestry
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Thu, 20 Dec 2012 19:55:45 +0100 |
parents | 5dcb4581c8ef |
children | 934037edbea0 |
comparison
equal
deleted
inserted
replaced
517:9922d1f7cb2a | 518:0d5e1ea7955e |
---|---|
67 this(hgRepo, rev, flags, p); | 67 this(hgRepo, rev, flags, p); |
68 isCopy = Boolean.valueOf(orig == null); | 68 isCopy = Boolean.valueOf(orig == null); |
69 origin = orig; | 69 origin = orig; |
70 } | 70 } |
71 | 71 |
72 public HgFileRevision(HgDataFile fileNode, Nodeid fileRevision, Path origin) { | 72 HgFileRevision(HgDataFile fileNode, Nodeid fileRevision, Path origin) { |
73 this(fileNode.getRepo(), fileRevision, null, fileNode.getPath(), origin); | 73 this(fileNode.getRepo(), fileRevision, null, fileNode.getPath(), origin); |
74 } | 74 } |
75 | 75 |
76 public Path getPath() { | 76 public Path getPath() { |
77 return path; | 77 return path; |