mirror of
https://github.com/jlengrand/picocli.git
synced 2026-03-10 08:41:17 +00:00
Fix explicit imports
This commit is contained in:
committed by
Remko Popma
parent
f97a82025c
commit
df6f52ea21
@@ -205,7 +205,7 @@ public class AutoComplete {
|
||||
* This class can be used as a subcommand for the top-level command in your application.
|
||||
* Users can then install completion for the top-level command by running the following command:
|
||||
* </p><pre>
|
||||
* source <(top-level-command [sub-commands] generate-completion)
|
||||
* source <(top-level-command [sub-command] generate-completion)
|
||||
* </pre>
|
||||
* @since 4.1
|
||||
*/
|
||||
|
||||
@@ -18,7 +18,12 @@ package picocli;
|
||||
import org.hamcrest.CoreMatchers;
|
||||
import org.junit.Rule;
|
||||
import org.junit.Test;
|
||||
import org.junit.contrib.java.lang.system.*;
|
||||
import org.junit.contrib.java.lang.system.Assertion;
|
||||
import org.junit.contrib.java.lang.system.ExpectedSystemExit;
|
||||
import org.junit.contrib.java.lang.system.ProvideSystemProperty;
|
||||
import org.junit.contrib.java.lang.system.RestoreSystemProperties;
|
||||
import org.junit.contrib.java.lang.system.SystemErrRule;
|
||||
import org.junit.contrib.java.lang.system.SystemOutRule;
|
||||
import org.junit.rules.TestRule;
|
||||
import picocli.CommandLine.Command;
|
||||
import picocli.CommandLine.Model.CommandSpec;
|
||||
@@ -27,12 +32,23 @@ import picocli.CommandLine.Model.PositionalParamSpec;
|
||||
import picocli.CommandLine.Option;
|
||||
import picocli.CommandLine.Parameters;
|
||||
|
||||
import java.io.*;
|
||||
import java.io.BufferedReader;
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.FileOutputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStreamReader;
|
||||
import java.io.PrintWriter;
|
||||
import java.io.StringWriter;
|
||||
import java.lang.reflect.Field;
|
||||
import java.lang.reflect.Method;
|
||||
import java.net.InetAddress;
|
||||
import java.net.URL;
|
||||
import java.util.*;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collections;
|
||||
import java.util.Comparator;
|
||||
import java.util.List;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
import static java.lang.String.format;
|
||||
|
||||
Reference in New Issue
Block a user