2
0
Fork 0
mirror of https://github.com/ethauvin/bld.git synced 2025-04-25 00:07:12 -07:00

Fixed for some operation options typos

This commit is contained in:
Geert Bevin 2023-10-01 09:29:15 -04:00
parent a6aadf8e60
commit 7c2d0221b8
2 changed files with 5 additions and 5 deletions

View file

@ -78,7 +78,7 @@ public class JavacOptions extends ArrayList<String> {
*/
public JavacOptions encoding(String name) {
add("-encoding");
add("name");
add(name);
return this;
}

View file

@ -100,7 +100,7 @@ public class JavadocOptions extends ArrayList<String> {
*/
public JavadocOptions doclet(String className) {
add("-doclet");
add("className");
add(className);
return this;
}
@ -112,7 +112,7 @@ public class JavadocOptions extends ArrayList<String> {
*/
public JavadocOptions docletPath(String path) {
add("-docletpath");
add("path");
add(path);
return this;
}
@ -135,7 +135,7 @@ public class JavadocOptions extends ArrayList<String> {
*/
public JavadocOptions encoding(String name) {
add("-encoding");
add("name");
add(name);
return this;
}
@ -213,7 +213,7 @@ public class JavadocOptions extends ArrayList<String> {
*/
public JavadocOptions locale(String name) {
add("-locale");
add("name");
add(name);
return this;
}