Skip to content

Commit 16e3971

Browse files
disable werror for java (#37456)
1 parent 953c20e commit 16e3971

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

build/chip/java/rules.gni

+1-4
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,7 @@ template("java_library") {
104104
# Building from sources - perform Java compilation and JAR creation.
105105
if (!_is_prebuilt) {
106106
# Additional flags
107-
_javac_flags = [
108-
"-Werror",
109-
"-Xlint:all",
110-
]
107+
_javac_flags = [ "-Xlint:all" ]
111108
if (defined(invoker.javac_flags)) {
112109
_javac_flags += invoker.javac_flags
113110
}

0 commit comments

Comments
 (0)