Skip to content

Commit 2c675c8

Browse files
committed
feat : Added generics
1 parent 1fe6b04 commit 2c675c8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

file/src/main/java/org/apache/zeppelin/file/FileInterpreter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ public class CommandArgs {
6464

6565
public CommandArgs(String cmd) {
6666
input = cmd;
67-
args = new ArrayList();
68-
flags = new HashSet();
67+
args = new ArrayList<>();
68+
flags = new HashSet<>();
6969
}
7070

7171
private void parseArg(String arg) {

0 commit comments

Comments
 (0)