Skip to content

Commit 30b6a02

Browse files
authored
Merge pull request #5804 from dotty-staging/fix-sbt-tests
sbt-dotty: fix "sbt doc" after the Java rewrite
2 parents 7b583e6 + 18b3de8 commit 30b6a02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sbt-bridge/src/xsbt/DottydocRunner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public void run() {
6767
}
6868
return msg.toString();
6969
});
70-
args = retained.toArray(args0);
70+
args = retained.toArray(new String[retained.size()]);
7171
} else {
7272
args = args0;
7373
}

0 commit comments

Comments
 (0)