We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f400b3 commit 9413c8aCopy full SHA for 9413c8a
1 file changed
test/langtools/jdk/javadoc/taglet/JdkTaglets.java
@@ -35,9 +35,9 @@ public final class JdkTaglets {
35
36
/// Build a taglet and return its path for `-tagletpath`.
37
public static Path build(ToolBox tb, Path base, String... tagletFiles) throws IOException {
38
- Path tagletOutDir = base.resolve("taglet");
39
- Files.deleteIfExists(tagletOutDir);
+ Path tagletOutDir = base.resolve("tagletClasses");
40
Files.createDirectories(tagletOutDir);
+ tb.cleanDirectory(tagletOutDir);
41
Path tagletRoot = tb.findFromTestRoot("../../make/jdk/src/classes/build/tools/taglet");
42
43
new JavacTask(tb)
0 commit comments