Skip to content

Commit 81fc9a5

Browse files
authored
Remove compilation warning (microsoft#231)
* fix a compilation warning.
1 parent 2106dbb commit 81fc9a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

com.microsoft.java.debug.plugin/src/main/java/com/microsoft/java/debug/plugin/internal/DebugSettingUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public static Object configDebugSettings(List<Object> arguments) {
5050
});
5151

5252
} else {
53-
logger.severe(String.format("Invalid parameters for debugSettings: %s", StringUtils.join(arguments)));
53+
logger.severe(String.format("Invalid parameters for debugSettings: %s", StringUtils.join(arguments.toArray(), ',')));
5454
}
5555
return JsonUtils.toJson(DebugSettings.getCurrent());
5656
}

0 commit comments

Comments
 (0)