Skip to content

Commit b6aa27d

Browse files
committed
ci: update
1 parent 20e1312 commit b6aa27d

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

jdtls.ext/com.microsoft.jdtls.ext.core/src/com/microsoft/jdtls/ext/core/parser/ContextResolver.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)