Apply "type inference for generic instance creation" Java 7 feature
Change-Id: Ia14802c903ca67b9d94dc6038d70b0e9644bc621
This commit is contained in:
		@@ -246,7 +246,7 @@ class CommandFactoryProvider implements Provider<CommandFactory>,
 | 
			
		||||
 | 
			
		||||
  /** Split a command line into a string array. */
 | 
			
		||||
  static public String[] split(String commandLine) {
 | 
			
		||||
    final List<String> list = new ArrayList<String>();
 | 
			
		||||
    final List<String> list = new ArrayList<>();
 | 
			
		||||
    boolean inquote = false;
 | 
			
		||||
    boolean inDblQuote = false;
 | 
			
		||||
    StringBuilder r = new StringBuilder();
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user