abhisripathi commented on code in PR #1391: URL: https://github.com/apache/commons-lang/pull/1391#discussion_r2110594127
########## src/main/java/org/apache/commons/lang3/ClassUtils.java: ########## @@ -496,9 +496,14 @@ private static String getCanonicalName(final String name) { className = className.substring(dim); if (className.startsWith("L")) { className = className.substring(1, className.endsWith(";") ? className.length() - 1 : className.length()); - } else if (!className.isEmpty()) { - className = reverseAbbreviationMap.get(className.substring(0, 1)); + } +// else if (!className.isEmpty()) { +// className = reverseAbbreviationMap.get(className.substring(0, 1)); Review Comment: Good point — I’ve removed the commented-out code to keep the file clean. It was left in unintentionally during the initial iteration. Thanks for pointing it out! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org