RefLeaseSpec: Fix Eclipse errors

- Remove unused import

- Remove unused private constructor

- Add Javadoc for public constructor

Change-Id: I1253e9fe863ca0f63182461ee87357fbf726ea2e
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
This commit is contained in:
David Pursehouse 2017-02-09 15:08:47 +09:00
parent 8fce17a995
commit d9d8c507a4
1 changed files with 8 additions and 8 deletions

View File

@ -45,8 +45,6 @@
import java.io.Serializable;
import org.eclipse.jgit.internal.JGitText;
/**
* Describes the expected value for a ref being pushed.
* @since 4.7
@ -60,12 +58,14 @@ public class RefLeaseSpec implements Serializable {
/** Local commitish to get expected value from. */
private final String expected;
private RefLeaseSpec(final RefLeaseSpec p) {
ref = p.getRef();
expected = p.getExpected();
}
public RefLeaseSpec(final String ref, final String expected) {
/**
*
* @param ref
* ref being pushed
* @param expected
* the expected value of the ref
*/
public RefLeaseSpec(String ref, String expected) {
this.ref = ref;
this.expected = expected;
}