HADOOP-12859. Disable hiding field style checks in class setters. Contributed by Kai Zheng.

This commit is contained in:
Andrew Wang 2016-03-02 09:40:30 -08:00
parent 5abf051249
commit 480302b4ba
2 changed files with 3 additions and 0 deletions

View File

@ -158,6 +158,7 @@
<module name="EqualsHashCode"/>
<module name="HiddenField">
<property name="ignoreConstructorParameter" value="true"/>
<property name="ignoreSetter" value="true"/>
</module>
<module name="IllegalInstantiation"/>
<module name="InnerAssignment"/>

View File

@ -698,6 +698,8 @@ Release 2.9.0 - UNRELEASED
HADOOP-10321. TestCompositeService should cover all enumerations of
adding a service to a parent service. (Ray Chiang via kasha)
HADOOP-12859. Disable hiding field style checks in class setters. (Kai Zheng via wang)
BUG FIXES
HADOOP-12605. Fix intermittent failure of TestIPC.testIpcWithReaderQueuing