Skip to main content

Removed block of commented-out lines of code (Sonar)

sonar:java/remove-commented-code-s125​

ImportanceReview GuidanceRequires Scanning Tool
HIGHMerge Without ReviewYes (Sonar)

This change eliminates commented-out code that may impede readability and distract focus. Any deleted code can still be accessed through the source control history if needed.

Our changes look something like this:

   catch (IOException e) {
- // LOG.error("Unexpected problem ", ex);
return handleError(ex);
}

References​