Skip to content

Commit 0ae2156

Browse files
review fix
1 parent 661082d commit 0ae2156

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/src/main/java/com/cloud/utils/script/Script.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ public static Pair<String, String> executeCommand(String command) {
687687
OutputInterpreter.AllLinesParser parser = new OutputInterpreter.AllLinesParser();
688688
String stdErr = script.execute(parser);
689689
String stdOut = parser.getLines();
690-
return new Pair(stdOut, stdErr);
690+
return new Pair<>(stdOut, stdErr);
691691
}
692692

693693
public static int executeCommandForExitValue(long timeout, String... command) {

0 commit comments

Comments
 (0)