You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by vo...@apache.org on 2020/06/20 10:19:21 UTC

[fineract] branch develop updated: FINERACT-822 Editing Checks list

This is an automated email from the ASF dual-hosted git repository.

vorburger pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


The following commit(s) were added to refs/heads/develop by this push:
     new e234980  FINERACT-822 Editing Checks list
e234980 is described below

commit e234980cd37a8b2e1b25467b16448b3221a4fc2f
Author: percyashu <pe...@gmail.com>
AuthorDate: Sat Jun 20 08:04:16 2020 +0100

    FINERACT-822 Editing Checks list
---
 fineract-provider/build.gradle | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/fineract-provider/build.gradle b/fineract-provider/build.gradle
index 728a3b6..4e84887 100644
--- a/fineract-provider/build.gradle
+++ b/fineract-provider/build.gradle
@@ -365,7 +365,6 @@ tasks.withType(JavaCompile) {
         disable(
                 "UnusedVariable",
                 "SameNameButDifferent",
-                "ImmutableEnumChecker",
                 "UnusedMethod",
                 "ModifiedButNotUsed",
                 "TypeParameterUnusedInFormals",
@@ -382,12 +381,10 @@ tasks.withType(JavaCompile) {
                 "ProtectedMembersInFinalClass",
                 "StaticAssignmentInConstructor",
                 "UnescapedEntity",
-                "EmptyCatch",
                 "InvalidBlockTag",
                 "ModifyCollectionInEnhancedForLoop",
                 "NonCanonicalType",
                 "InvalidInlineTag",
-                "InvalidBlockTag"
         )
         //TODO gradually enable these checks
         error(
@@ -419,6 +416,7 @@ tasks.withType(JavaCompile) {
                 "StringSplitter",
                 "AssertThrowsMultipleStatements",
                 "BoxedPrimitiveConstructor",
+                "EmptyCatch",
                 "BoxedPrimitiveEquality",
                 "SynchronizeOnNonFinalField",
                 "WildcardImport",
@@ -434,6 +432,7 @@ tasks.withType(JavaCompile) {
                 "VarTypeName",
                 "ArgumentSelectionDefectChecker",
                 "CompareToZero",
+                "InjectOnConstructorOfAbstractClass",
                 "ImmutableEnumChecker",
                 "NarrowingCompoundAssignment",
                 "MissingCasesInEnumSwitch",
@@ -444,13 +443,11 @@ tasks.withType(JavaCompile) {
                 "DoubleBraceInitialization",
                 "InconsistentCapitalization",
                 "MissingOverride",
-//                "ReturnMissingNullable",
+//                "InvalidBlockTag",
 //                "InconsistentOverloads",
 //                "MethodCanBeStatic",
 //                "Var",
 //                "ConstantField",
-//                "ConstructorInvokesOverridable",
-//                "InjectOnConstructorOfAbstractClass",
 //                "UnnecessaryDefaultInEnumSwitch",
 //                "FieldCanBeFinal"
         )