mirror of
https://github.com/rife2/bld
synced 2026-02-04 01:03:42 +01:00
Fix containsRelease method to check for --release instead of -release in JavacOptions
This commit is contained in:
parent
e1765804e0
commit
96831543b1
|
|
@ -301,7 +301,7 @@ public class JavacOptions extends ArrayList<String> {
|
|||
* @since 1.5.18
|
||||
*/
|
||||
public boolean containsRelease() {
|
||||
return contains("-release");
|
||||
return contains("--release");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue