This is an automated email from the ASF dual-hosted git repository.
jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git
The following commit(s) were added to refs/heads/master by this push:
new a2d6988a95 SonarQube bug fixes
a2d6988a95 is described below
commit a2d6988a95279c26df6640177a0b51966fe623ce
Author: James Bognar <[email protected]>
AuthorDate: Wed Feb 4 16:09:06 2026 -0500
SonarQube bug fixes
---
.../src/main/java/org/apache/juneau/annotation/Schema.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/annotation/Schema.java
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/annotation/Schema.java
index 7a78febe0d..97d597490e 100644
---
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/annotation/Schema.java
+++
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/annotation/Schema.java
@@ -801,7 +801,7 @@ public @interface Schema {
* @return The annotation value.
* @deprecated Use {@link #exclusiveMaximumValue()} for JSON Schema
Draft 2020-12 compliance.
*/
- @Deprecated
+ @Deprecated(since = "9.2.0", forRemoval = true)
boolean exclusiveMaximum() default false;
/**
@@ -879,7 +879,7 @@ public @interface Schema {
* @return The annotation value.
* @deprecated Use {@link #exclusiveMinimumValue()} for JSON Schema
Draft 2020-12 compliance.
*/
- @Deprecated
+ @Deprecated(since = "9.2.0", forRemoval = true)
boolean exclusiveMinimum() default false;
/**