Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Improved: Updated tasks.checkstyleMain.maxErrors to 278
  • Loading branch information
james-yong committed Jan 21, 2021
1 parent 1bfd3c5 commit b679d36
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -296,7 +296,7 @@ checkstyle {
// the sum of errors found last time it was changed after using the
// ‘checkstyle’ tool present in the framework and in the official
// plugins.
tasks.checkstyleMain.maxErrors = 279
tasks.checkstyleMain.maxErrors = 278
// Currently there are a lot of errors so we need to temporarily
// hide them to avoid polluting the terminal output.
showViolations = false
Expand Down
Expand Up @@ -40,7 +40,7 @@
* Misc String Utility Functions
*
*/
public class StringUtil {
public final class StringUtil {

public static final StringUtil INSTANCE = new StringUtil();
private static final String MODULE = StringUtil.class.getName();
Expand Down
Expand Up @@ -1299,4 +1299,4 @@ private static boolean isValidPhoneNumber(String phoneNumber, String geoId, Dele
}
return isValid;
}
}
}
Expand Up @@ -79,7 +79,7 @@
/**
* RequestHandler - Request Processor Object
*/
public class RequestHandler {
public final class RequestHandler {

private static final String MODULE = RequestHandler.class.getName();
private final ViewFactory viewFactory;
Expand Down

0 comments on commit b679d36

Please sign in to comment.