Browse Source

Fix javadoc errors and unused imports introduced by ddd0fe25

Change-Id: I2d17115843e453c71febd4a58527effe658b48fd
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v4.4.0.201606011500-rc2
Matthias Sohn 8 years ago
parent
commit
525baa1213

+ 0
- 3
org.eclipse.jgit.test/tst/org/eclipse/jgit/gitrepo/RepoCommandTest.java View File

@@ -50,9 +50,6 @@ import static org.junit.Assert.assertTrue;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;

import org.eclipse.jgit.api.Git;
import org.eclipse.jgit.junit.JGitTestUtil;

+ 0
- 1
org.eclipse.jgit/src/org/eclipse/jgit/gitrepo/RepoCommand.java View File

@@ -51,7 +51,6 @@ import java.io.IOException;
import java.io.InputStream;
import java.text.MessageFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.Set;

+ 6
- 1
org.eclipse.jgit/src/org/eclipse/jgit/gitrepo/RepoProject.java View File

@@ -136,6 +136,8 @@ public class RepoProject implements Comparable<RepoProject> {
* name of the remote definition
* @param groups
* set of groups
* @param recommendShallow
* recommendation for shallowness
* @since 4.4
*/
public RepoProject(String name, String path, String revision,
@@ -189,7 +191,8 @@ public class RepoProject implements Comparable<RepoProject> {
/**
* Set the url of the sub repo.
*
* @param url
* @param groups
* comma separated group list
* @return this for chaining.
* @since 4.4
*/
@@ -297,6 +300,8 @@ public class RepoProject implements Comparable<RepoProject> {
/**
* Sets the recommendation for shallowness.
*
* @param recommendShallow
* recommendation for shallowness
* @since 4.4
*/
public void setRecommendShallow(String recommendShallow) {

Loading…
Cancel
Save