Browse Source

Add lazy loading of body for tags to PlotWalk

This change is required by egit's lazy loading of the body in the
history view when the walk is started with setRetainBody(false).

Change-Id: I9291ba8c34c8744bc009b1bd302ed28bfa4e9476
Signed-off-by: Stefan Lay <stefan.lay@sap.com>
stable-2.0
Stefan Lay 13 years ago committed by Matthias Sohn
parent
commit
f0df18ff4f
  1. 5
      org.eclipse.jgit/src/org/eclipse/jgit/revplot/PlotWalk.java

5
org.eclipse.jgit/src/org/eclipse/jgit/revplot/PlotWalk.java

@ -172,6 +172,11 @@ public class PlotWalk extends RevWalk {
return ((RevCommit) o).getCommitTime(); return ((RevCommit) o).getCommitTime();
if (o instanceof RevTag) { if (o instanceof RevTag) {
RevTag tag = (RevTag) o; RevTag tag = (RevTag) o;
try {
parseBody(tag);
} catch (IOException e) {
return 0;
}
PersonIdent who = tag.getTaggerIdent(); PersonIdent who = tag.getTaggerIdent();
return who != null ? who.getWhen().getTime() : 0; return who != null ? who.getWhen().getTime() : 0;
} }

Loading…
Cancel
Save