File tree Expand file tree Collapse file tree 1 file changed +0
-12
lines changed
jdtls.ext/com.microsoft.jdtls.ext.core/src/com/microsoft/jdtls/ext/core/parser Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -907,11 +907,6 @@ private static String extractRelevantJavaDocContent(org.eclipse.jdt.core.IType t
907907 if (isNotEmpty (description )) {
908908 result .append ("Description:\n " ).append (description ).append ("\n \n " );
909909 }
910-
911- // === High Priority: Check for @deprecated tag ===
912- if (isDeprecated (cleanedJavadoc )) {
913- result .append ("⚠️ DEPRECATED: This class is deprecated and should not be used in new code.\n \n " );
914- }
915910
916911 // === Extract code snippets ===
917912 // 1. Extract markdown code blocks (```...```)
@@ -982,13 +977,6 @@ private static String extractClassDescription(String cleanedJavadoc) {
982977
983978 return description .trim ();
984979 }
985-
986- /**
987- * Check if the JavaDoc contains @deprecated tag.
988- */
989- private static boolean isDeprecated (String cleanedJavadoc ) {
990- return cleanedJavadoc != null && cleanedJavadoc .contains ("@deprecated" );
991- }
992980
993981 /**
994982 * Clean up raw JavaDoc comment by removing comment markers and asterisks
You can’t perform that action at this time.
0 commit comments