Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java
index 2c68dbb6d4..1eaa995c6e 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java
@@ -126,7 +126,7 @@ class RefDatabase {
/**
* Create a command to update, create or delete a ref in this repository.
- *
+ *
* @param name
* name of the ref the caller wants to modify.
* @return an update command. The caller must finish populating this command
@@ -172,7 +172,7 @@ class RefDatabase {
/**
* Writes a symref (e.g. HEAD) to disk
- *
+ *
* @param name
* symref name
* @param target
@@ -382,7 +382,7 @@ class RefDatabase {
return new Ref(Ref.Storage.LOOSE, origName, target, null);
if (!origName.equals(r.getName()))
r = new Ref(Ref.Storage.LOOSE_PACKED, origName, r.getName(), r.getObjectId(), r.getPeeledObjectId(), true);
- return r;
+ return r;
}
setModified();

Back to the top