From 1fff991fabe8d8f8024a4cd4511206b1d3a2d785 Mon Sep 17 00:00:00 2001 From: Vladimir Krivosheev Date: Mon, 8 Sep 2025 03:29:50 +0300 Subject: [PATCH] update jsoup to 1.21.2 in project configuration files GitOrigin-RevId: aa63e1cb06db2d5a5d04d931cff5d07ac013c07d --- .../testData/codeInsight/documentation/EscapingLink.html | 2 +- .../codeInsight/documentation/LinkBetweenMethods.html | 2 +- .../documentation/LinkToPackageSummaryWithReference.html | 2 +- .../codeInsight/documentation/LinkWithReference.html | 2 +- .../ReferenceStyleDoesntMatchBytecodeVersion.html | 2 +- ...ionForJdkClassWithReferencesToClassesFromJavaLang.html | 4 ++-- .../codeInsight/javadocIG/reflectConstructor.html | 8 ++++---- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/java/java-tests/testData/codeInsight/documentation/EscapingLink.html b/java/java-tests/testData/codeInsight/documentation/EscapingLink.html index d7545b3ff9ff..5be303848ed3 100644 --- a/java/java-tests/testData/codeInsight/documentation/EscapingLink.html +++ b/java/java-tests/testData/codeInsight/documentation/EscapingLink.html @@ -26,4 +26,4 @@ -
 myLib
`genericMethod(Class<?>)` on localhost
\ No newline at end of file +
 myLib
`genericMethod(Class<?>)` on localhost
\ No newline at end of file diff --git a/java/java-tests/testData/codeInsight/documentation/LinkBetweenMethods.html b/java/java-tests/testData/codeInsight/documentation/LinkBetweenMethods.html index 33817ebdb714..5cf3fd59ddde 100644 --- a/java/java-tests/testData/codeInsight/documentation/LinkBetweenMethods.html +++ b/java/java-tests/testData/codeInsight/documentation/LinkBetweenMethods.html @@ -19,4 +19,4 @@
m2()
-
 myLib
`m1()` on localhost
\ No newline at end of file +
 myLib
`m1()` on localhost
\ No newline at end of file diff --git a/java/java-tests/testData/codeInsight/documentation/LinkToPackageSummaryWithReference.html b/java/java-tests/testData/codeInsight/documentation/LinkToPackageSummaryWithReference.html index c6dfc1b268d7..52336c39073c 100644 --- a/java/java-tests/testData/codeInsight/documentation/LinkToPackageSummaryWithReference.html +++ b/java/java-tests/testData/codeInsight/documentation/LinkToPackageSummaryWithReference.html @@ -24,4 +24,4 @@ -
 myLib
`SimpleInterface` on localhost
\ No newline at end of file +
 myLib
`SimpleInterface` on localhost
\ No newline at end of file diff --git a/java/java-tests/testData/codeInsight/documentation/LinkWithReference.html b/java/java-tests/testData/codeInsight/documentation/LinkWithReference.html index c982a56231a3..a8cb9eea15ad 100644 --- a/java/java-tests/testData/codeInsight/documentation/LinkWithReference.html +++ b/java/java-tests/testData/codeInsight/documentation/LinkWithReference.html @@ -32,4 +32,4 @@ extends java.lang.Object -
 myLib
`ClassWithRefLink` on localhost
\ No newline at end of file +
 myLib
`ClassWithRefLink` on localhost
\ No newline at end of file diff --git a/java/java-tests/testData/codeInsight/documentation/ReferenceStyleDoesntMatchBytecodeVersion.html b/java/java-tests/testData/codeInsight/documentation/ReferenceStyleDoesntMatchBytecodeVersion.html index 119bb0011eda..379b8029ccb5 100644 --- a/java/java-tests/testData/codeInsight/documentation/ReferenceStyleDoesntMatchBytecodeVersion.html +++ b/java/java-tests/testData/codeInsight/documentation/ReferenceStyleDoesntMatchBytecodeVersion.html @@ -26,4 +26,4 @@ -
 myLib
`param()` on localhost
\ No newline at end of file +
 myLib
`param()` on localhost
\ No newline at end of file diff --git a/java/java-tests/testData/codeInsight/javadocIG/documentationForJdkClassWithReferencesToClassesFromJavaLang.html b/java/java-tests/testData/codeInsight/javadocIG/documentationForJdkClassWithReferencesToClassesFromJavaLang.html index a30470ade126..5779c5b029bd 100644 --- a/java/java-tests/testData/codeInsight/javadocIG/documentationForJdkClassWithReferencesToClassesFromJavaLang.html +++ b/java/java-tests/testData/codeInsight/javadocIG/documentationForJdkClassWithReferencesToClassesFromJavaLang.html @@ -1,8 +1,8 @@ -
 java.util.List<E>
@Contract(pure = true) 
+
@Contract(pure = true) 
 public abstract boolean contains(
Object o
)

Returns true if this list contains the specified element. More formally, returns true if and only if this list contains at least one element e such that (o==null ? e==null : o.equals(e)). -

Overrides:

contains in interface Collection

Params:

o – element whose presence in this list is to be tested

Returns:

true if this list contains the specified element

Throws:

ClassCastException – if the type of the specified element is incompatible with this list (optional)

NullPointerException – if the specified element is null and this list does not permit null elements (optional)

 < java 1.7 >
\ No newline at end of file +

Overrides:

contains in interface Collection

Params:

o – element whose presence in this list is to be tested

Returns:

true if this list contains the specified element

Throws:

ClassCastException – if the type of the specified element is incompatible with this list (optional)

NullPointerException – if the specified element is null and this list does not permit null elements (optional)

 < java 1.7 >
\ No newline at end of file diff --git a/java/java-tests/testData/codeInsight/javadocIG/reflectConstructor.html b/java/java-tests/testData/codeInsight/javadocIG/reflectConstructor.html index 82a53258d51c..53dda252ac37 100644 --- a/java/java-tests/testData/codeInsight/javadocIG/reflectConstructor.html +++ b/java/java-tests/testData/codeInsight/javadocIG/reflectConstructor.html @@ -1,4 +1,4 @@ -
 java.lang.Class<T>
@CallerSensitive 
-@Contract(pure = true) 
-public @NotNull java.lang.reflect.Constructor<?> @NotNull [] getDeclaredConstructors()
-throws SecurityException

Throws:

SecurityException

 < java 21 >
\ No newline at end of file +
 java.lang.Class<T>
@CallerSensitive 
+@Contract(pure = true) 
+public @NotNull java.lang.reflect.Constructor<?> @NotNull [] getDeclaredConstructors()
+throws SecurityException

Throws:

SecurityException

 < java 21 >
\ No newline at end of file