Remove deprecated Repository#getRef

Use Repository#exactRef(String) or Repository#findRef(String) instead.

Change-Id: I5c547a26604b4cd792111c699df5f3c9d955d3f2
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Matthias Sohn 2018-03-10 00:37:07 +01:00
parent d061343619
commit e1cfe09bfa
1 changed files with 4 additions and 22 deletions

View File

@ -486,7 +486,7 @@ public ObjectId resolve(final String revstr)
try (RevWalk rw = new RevWalk(this)) {
Object resolved = resolve(rw, revstr);
if (resolved instanceof String) {
final Ref ref = getRef((String)resolved);
final Ref ref = findRef((String) resolved);
return ref != null ? ref.getLeaf().getObjectId() : null;
} else {
return (ObjectId) resolved;
@ -709,7 +709,7 @@ private Object resolve(final RevWalk rw, final String revstr)
.format(JGitText.get().invalidRefName,
name),
revstr);
Ref ref = getRef(name);
Ref ref = findRef(name);
name = null;
if (ref == null)
return null;
@ -762,7 +762,7 @@ private Object resolve(final RevWalk rw, final String revstr)
.format(JGitText.get().invalidRefName,
name),
revstr);
Ref ref = getRef(name);
Ref ref = findRef(name);
name = null;
if (ref == null)
return null;
@ -813,7 +813,7 @@ private Object resolve(final RevWalk rw, final String revstr)
throw new RevisionSyntaxException(
MessageFormat.format(JGitText.get().invalidRefName, name),
revstr);
if (getRef(name) != null)
if (findRef(name) != null)
return name;
return resolveSimple(name);
}
@ -1053,24 +1053,6 @@ public Set<ObjectId> getAdditionalHaves() {
return Collections.emptySet();
}
/**
* Get a ref by name.
*
* @param name
* the name of the ref to lookup. May be a short-hand form, e.g.
* "master" which is is automatically expanded to
* "refs/heads/master" if "refs/heads/master" already exists.
* @return the Ref with the given name, or {@code null} if it does not exist
* @throws java.io.IOException
* @deprecated Use {@link #exactRef(String)} or {@link #findRef(String)}
* instead.
*/
@Deprecated
@Nullable
public Ref getRef(final String name) throws IOException {
return findRef(name);
}
/**
* Get a ref by name.
*