SonarLint: Replace if-then-else statement by single return statement.
This is the most common issue you will see while fixing the sonarQube reported issues.
here we are returning true and false based on the condition.
Non Compliant Code
private boolean isTextField(CustomField field) {
if (field.getCustomFieldT...
hashcodehub.hashnode.dev1 min read