This is an automated email from the ASF dual-hosted git repository. jiriondrusek pushed a commit to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/camel-main by this push: new b230d2dc95 Fixed jt400-mocked compilation b230d2dc95 is described below commit b230d2dc955ed9e13427804f50fe26baac2a28a4 Author: Jiri Ondrusek <ondrusek.j...@gmail.com> AuthorDate: Thu Jan 2 09:37:56 2025 +0100 Fixed jt400-mocked compilation --- .../src/main/java/com/ibm/as400/access/MockSocketContainer.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/integration-tests/jt400-mocked/src/main/java/com/ibm/as400/access/MockSocketContainer.java b/integration-tests/jt400-mocked/src/main/java/com/ibm/as400/access/MockSocketContainer.java index 39a1516520..95368ed7b6 100644 --- a/integration-tests/jt400-mocked/src/main/java/com/ibm/as400/access/MockSocketContainer.java +++ b/integration-tests/jt400-mocked/src/main/java/com/ibm/as400/access/MockSocketContainer.java @@ -74,4 +74,9 @@ public class MockSocketContainer extends SocketContainer { int getSoTimeout() throws SocketException { return 0; } + + @Override + String getLocalAddress() { + return ""; + } }