diff options
author | Roberto Tyley <roberto.tyley@guardian.co.uk> | 2011-01-25 14:50:25 +0000 |
---|---|---|
committer | Chris Aniszczyk <caniszczyk@gmail.com> | 2011-01-26 22:35:41 -0600 |
commit | afa7c7ab07a900831c5e6ea0d8c8f8d42297e7ce (patch) | |
tree | 6ff9a00500c9bec25b7689ad54ec1389b5d3009e /org.eclipse.jgit | |
parent | 6ac8279ae7b05faadce88951bb26bdb04c1fcca1 (diff) | |
download | jgit-afa7c7ab07a900831c5e6ea0d8c8f8d42297e7ce.tar.gz jgit-afa7c7ab07a900831c5e6ea0d8c8f8d42297e7ce.zip |
Rename PlotWalk.getTags() to getRefs()
Change-Id: I170685e70d9ac09a010df69d26ec1c38bde60174
Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
Diffstat (limited to 'org.eclipse.jgit')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/revplot/PlotWalk.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/revplot/PlotWalk.java b/org.eclipse.jgit/src/org/eclipse/jgit/revplot/PlotWalk.java index b4c90c54d3..53020f49d4 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/revplot/PlotWalk.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/revplot/PlotWalk.java @@ -108,11 +108,11 @@ public class PlotWalk extends RevWalk { IncorrectObjectTypeException, IOException { PlotCommit<?> pc = (PlotCommit) super.next(); if (pc != null) - pc.refs = getTags(pc); + pc.refs = getRefs(pc); return pc; } - private Ref[] getTags(final AnyObjectId commitId) { + private Ref[] getRefs(final AnyObjectId commitId) { Collection<Ref> list = reverseRefMap.get(commitId); Ref[] tags; if (list == null) |