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 283fa1db35 Fix raw-type BasicResource reference in
Remote_CommonInterfaces_Test (TODO-274 follow-up)
283fa1db35 is described below
commit 283fa1db35b7aea97cdc45c8d139db8b2df12db7
Author: James Bognar <[email protected]>
AuthorDate: Tue Jul 21 11:17:11 2026 -0400
Fix raw-type BasicResource reference in Remote_CommonInterfaces_Test
(TODO-274 follow-up)
Co-authored-by: Cursor <[email protected]>
---
.../org/apache/juneau/http/remote/Remote_CommonInterfaces_Test.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/juneau-integration-tests/src/test/java/org/apache/juneau/http/remote/Remote_CommonInterfaces_Test.java
b/juneau-integration-tests/src/test/java/org/apache/juneau/http/remote/Remote_CommonInterfaces_Test.java
index 30e7c6a00a..54fc0555e0 100644
---
a/juneau-integration-tests/src/test/java/org/apache/juneau/http/remote/Remote_CommonInterfaces_Test.java
+++
b/juneau-integration-tests/src/test/java/org/apache/juneau/http/remote/Remote_CommonInterfaces_Test.java
@@ -192,12 +192,12 @@ class Remote_CommonInterfaces_Test extends TestBase {
@Remote
@Rest
public interface D extends BasicJson5Config {
- BasicResource httpResource() throws IOException ;
+ BasicResource<?> httpResource() throws IOException ;
}
public static class D1 implements D {
@Override
- public BasicResource httpResource() throws IOException {
+ public BasicResource<?> httpResource() throws IOException {
return
byteArrayResource("foo".getBytes()).setContentType("text/foo").setHeader("Foo","foo").addHeaders(eTag("\"bar\""));
}
}