diff --git a/src/de/uni_passau/fim/seibt/gitwrapper/repo/Branch.java b/src/de/uni_passau/fim/seibt/gitwrapper/repo/Branch.java index 63b47981275c8e158335ec1b5f467317b9549d45..f5be62026bdefbe12f0f5579500c9f6818047bae 100644 --- a/src/de/uni_passau/fim/seibt/gitwrapper/repo/Branch.java +++ b/src/de/uni_passau/fim/seibt/gitwrapper/repo/Branch.java @@ -1,11 +1,11 @@ package de.uni_passau.fim.seibt.gitwrapper.repo; -import de.uni_passau.fim.seibt.gitwrapper.process.ProcessExecutor; - import java.util.Optional; import java.util.function.Function; import java.util.logging.Logger; +import de.uni_passau.fim.seibt.gitwrapper.process.ProcessExecutor; + /** * A {@link Branch} is a named {@link Reference} to a git branch pointing to a {@link Commit}. */ @@ -48,21 +48,21 @@ public class Branch extends Reference { } /** - * Returns the id of the {@link Commit} this reference is currently pointing to. + * Returns the {@link Commit} this {@link Branch} is pointing at or an empty optional if there is an error. * - * @return the id of the {@link Commit} under this branch + * @return optionally the tip of this {@link Branch} */ - @Override - public String getId() { - return repo.toHash(id).orElse(id); + public Optional<Commit> getTip() { + return repo.toHash(id).map(repo::getCommitUnchecked); } /** - * Reruns the branch name. + * Returns the name of this {@link Branch} e.g. 'master' or 'origin/master'. * - * @return the branch name + * @return the name of this {@link Branch} */ - public String getName() { + @Override + public String getId() { return id; } }