Apilint: Enforce final builders

Test: run apilint
Bug: 124883027
Change-Id: I7f2866e46bc40be60487846b2af9f8fd7edb7623
This commit is contained in:
Adrian Roos
2019-02-27 23:58:13 +01:00
parent eee18bd546
commit deb0ff2bf4

View File

@@ -1109,6 +1109,9 @@ def verify_builder(clazz):
if not has_build:
warn(clazz, None, None, "Missing build() method")
if "final" not in clazz.split:
error(clazz, None, None, "Builder should be final")
def verify_aidl(clazz):
"""Catch people exposing raw AIDL."""