diff options
author | Dave Borowitz <dborowitz@google.com> | 2015-03-12 10:59:02 -0700 |
---|---|---|
committer | Dave Borowitz <dborowitz@google.com> | 2015-03-12 12:46:26 -0700 |
commit | 0b625445ef4aa6dc5883336948015804b462de1d (patch) | |
tree | 8bb6b5360a39863234ca995cd634e06d1b062419 /org.eclipse.jgit.junit | |
parent | 828721826ab61ceef064d57f804db91a4b9a47f3 (diff) | |
download | jgit-0b625445ef4aa6dc5883336948015804b462de1d.tar.gz jgit-0b625445ef4aa6dc5883336948015804b462de1d.zip |
TestRepository: Support committing to unborn symref
Change-Id: I6bcee635adda7c929f6fa68ef20438fe77e49184
Diffstat (limited to 'org.eclipse.jgit.junit')
-rw-r--r-- | org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/TestRepository.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/TestRepository.java b/org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/TestRepository.java index a299d144d4..371e139a88 100644 --- a/org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/TestRepository.java +++ b/org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/TestRepository.java @@ -887,9 +887,8 @@ public class TestRepository<R extends Repository> { branch = b; Ref ref = db.getRef(branch.ref); - if (ref != null) { + if (ref != null && ref.getObjectId() != null) parent(pool.parseCommit(ref.getObjectId())); - } } CommitBuilder(CommitBuilder prior) throws Exception { |