|
18 | 18 | package pl.project13.jgit; |
19 | 19 |
|
20 | 20 | import com.google.common.annotations.VisibleForTesting; |
21 | | -import com.google.common.base.Function; |
22 | 21 | import com.google.common.base.Optional; |
23 | 22 | import com.google.common.base.Preconditions; |
24 | | -import com.google.common.base.Throwables; |
25 | | -import com.google.common.collect.Lists; |
26 | 23 |
|
27 | 24 | import org.eclipse.jgit.api.Git; |
28 | 25 | import org.eclipse.jgit.api.GitCommand; |
29 | 26 | import org.eclipse.jgit.api.Status; |
30 | 27 | import org.eclipse.jgit.api.errors.GitAPIException; |
31 | | -import org.eclipse.jgit.errors.IncorrectObjectTypeException; |
32 | 28 | import org.eclipse.jgit.lib.ObjectId; |
33 | 29 | import org.eclipse.jgit.lib.ObjectReader; |
34 | | -import org.eclipse.jgit.lib.Ref; |
35 | 30 | import org.eclipse.jgit.lib.Repository; |
36 | 31 | import org.eclipse.jgit.revwalk.RevCommit; |
37 | | -import org.eclipse.jgit.revwalk.RevTag; |
38 | 32 | import org.eclipse.jgit.revwalk.RevWalk; |
39 | 33 | import org.jetbrains.annotations.NotNull; |
40 | 34 | import org.jetbrains.annotations.Nullable; |
|
47 | 41 |
|
48 | 42 | import java.io.IOException; |
49 | 43 | import java.util.*; |
50 | | -import java.util.regex.Pattern; |
51 | 44 |
|
52 | 45 | /** |
53 | 46 | * Implements git's <pre>describe</pre> command. |
54 | | - * |
55 | | - * @author Konrad Malawski |
56 | 47 | */ |
57 | 48 | public class DescribeCommand extends GitCommand<DescribeResult> { |
58 | 49 |
|
|
0 commit comments