Skip to content

Commit 2ea63e5

Browse files
committed
fix(ci): resolve Collection type clash in shell helper
1 parent dff7b7f commit 2ea63e5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/mynosql/shell/Shell.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ private void printHelpLine(String commandText, String description) {
510510
System.out.printf(" %-48s %s%n", command(commandText), description);
511511
}
512512

513-
private void printStringList(String title, Collection<String> items, String emptyMessage) {
513+
private void printStringList(String title, java.util.Collection<String> items, String emptyMessage) {
514514
printSection(title);
515515
if (items.isEmpty()) {
516516
printInfo(emptyMessage);

0 commit comments

Comments
 (0)