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 89dc6d40c2 Suppress Eclipse resource-analysis false positives on
SavedViewsMixin serving-test mock Closeables.
89dc6d40c2 is described below
commit 89dc6d40c29a20f1764a77784528f63897c3b829
Author: James Bognar <[email protected]>
AuthorDate: Thu Aug 20 11:53:47 2026 -0400
Suppress Eclipse resource-analysis false positives on SavedViewsMixin
serving-test mock Closeables.
---
.../apache/juneau/rest/server/views/SavedViewsMixin_Serving_Test.java | 3 +++
1 file changed, 3 insertions(+)
diff --git
a/juneau-rest/juneau-rest-server-views/src/test/java/org/apache/juneau/rest/server/views/SavedViewsMixin_Serving_Test.java
b/juneau-rest/juneau-rest-server-views/src/test/java/org/apache/juneau/rest/server/views/SavedViewsMixin_Serving_Test.java
index f9a951fe1c..c7179dbb41 100644
---
a/juneau-rest/juneau-rest-server-views/src/test/java/org/apache/juneau/rest/server/views/SavedViewsMixin_Serving_Test.java
+++
b/juneau-rest/juneau-rest-server-views/src/test/java/org/apache/juneau/rest/server/views/SavedViewsMixin_Serving_Test.java
@@ -49,6 +49,9 @@ import org.junit.jupiter.api.*;
* {@code LoopbackBoundary_Test} / {@code LoopbackBoundaryFilter_Test}. The
one write-time transport check the mixin
* DOES own — {@code Content-Type: application/json} (415) — is
exercised below.
*/
+@SuppressWarnings({
+ "resource" // Closeable test fixture held in a static field; lifecycle
managed by the test/framework, not a real leak.
+})
class SavedViewsMixin_Serving_Test extends TestBase {
@Rest