This is an automated email from the ASF dual-hosted git repository.
surajk pushed a commit to branch trunk
in repository
https://gitbox.apache.org/repos/asf/ofbiz-framework.gitThe following commit(s) were added to refs/heads/trunk by this push:
new d70bb87 Improved: Added override property in DesignForExtension module to avoid unnecessary design for extension checkstyle error messages for overrided methods. (OFBIZ-11941) Thanks Jacques for you inputs.
d70bb87 is described below
commit d70bb8763e5009fe0eb13661c41c8f23f8d706a8
Author: Suraj Khurana <
[hidden email]>
AuthorDate: Sun Aug 9 13:19:03 2020 +0530
Improved: Added override property in DesignForExtension module to avoid unnecessary design for extension checkstyle error messages for overrided methods.
(OFBIZ-11941)
Thanks Jacques for you inputs.
---
config/checkstyle/checkstyle.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/checkstyle/checkstyle.xml b/config/checkstyle/checkstyle.xml
index a8d4f7d..5132539 100644
--- a/config/checkstyle/checkstyle.xml
+++ b/config/checkstyle/checkstyle.xml
@@ -123,7 +123,7 @@ under the License.
<!-- Checks for class design -->
<module name="DesignForExtension">
<property name="ignoredAnnotations"
- value="After, AfterClass, Before, BeforeClass, Test, Property"/>
+ value="After, AfterClass, Before, BeforeClass, Test, Property, Override"/>
</module>
<module name="FinalClass"/>
<module name="HideUtilityClassConstructor"/>