Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/lib/Ref.java')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/lib/Ref.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/Ref.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/Ref.java
index b040e9bedd..162e399d99 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/Ref.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/Ref.java
@@ -136,7 +136,7 @@ public class Ref {
/**
* Create a new ref pairing.
- *
+ *
* @param st
* method used to store this ref.
* @param origName
@@ -153,7 +153,7 @@ public class Ref {
/**
* Create a new ref pairing.
- *
+ *
* @param st
* method used to store this ref.
* @param refName
@@ -168,7 +168,7 @@ public class Ref {
/**
* Create a new ref pairing.
- *
+ *
* @param st
* method used to store this ref.
* @param origName
@@ -196,7 +196,7 @@ public class Ref {
/**
* Create a new ref pairing.
- *
+ *
* @param st
* method used to store this ref.
* @param refName
@@ -217,7 +217,7 @@ public class Ref {
/**
* What this ref is called within the repository.
- *
+ *
* @return name of this ref.
*/
public String getName() {
@@ -233,7 +233,7 @@ public class Ref {
/**
* Cached value of this ref.
- *
+ *
* @return the value of this ref at the last time we read it.
*/
public ObjectId getObjectId() {
@@ -242,7 +242,7 @@ public class Ref {
/**
* Cached value of <code>ref^{}</code> (the ref peeled to commit).
- *
+ *
* @return if this ref is an annotated tag the id of the commit (or tree or
* blob) that the annotated tag refers to; null if this ref does not
* refer to an annotated tag.

Back to the top