This is an automated email from the ASF dual-hosted git repository.
sruehl pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x-extras.git
The following commit(s) were added to refs/heads/develop by this push:
new 1bfcccf fix(plc4j): change to update constant name
1bfcccf is described below
commit 1bfcccf0e284b7c7cad44e169509c606e665564c
Author: Sebastian Rühl <[email protected]>
AuthorDate: Mon Sep 8 10:33:36 2025 +0200
fix(plc4j): change to update constant name
---
.../java/org/apache/plc4x/java/tools/plc4xserver/Plc4xServer.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/plc4j/tools/plc4x-server/src/main/java/org/apache/plc4x/java/tools/plc4xserver/Plc4xServer.java
b/plc4j/tools/plc4x-server/src/main/java/org/apache/plc4x/java/tools/plc4xserver/Plc4xServer.java
index 9518fed..2227ec8 100644
---
a/plc4j/tools/plc4x-server/src/main/java/org/apache/plc4x/java/tools/plc4xserver/Plc4xServer.java
+++
b/plc4j/tools/plc4x-server/src/main/java/org/apache/plc4x/java/tools/plc4xserver/Plc4xServer.java
@@ -39,7 +39,7 @@ import java.util.concurrent.CompletableFuture;
import java.util.concurrent.Future;
import java.util.function.ToIntFunction;
import org.apache.plc4x.java.api.exceptions.PlcRuntimeException;
-import org.apache.plc4x.java.plc4x.readwrite.Plc4xConstants;
+import org.apache.plc4x.java.plc4x.readwrite.Constants;
import org.apache.plc4x.java.plc4x.readwrite.Plc4xMessage;
import org.apache.plc4x.java.spi.connection.GeneratedProtocolMessageCodec;
import org.apache.plc4x.java.spi.generation.ByteOrder;
@@ -51,7 +51,7 @@ public class Plc4xServer {
public static final String SERVER_PORT_PROPERTY = "plc4x.server.port";
public static final String SERVER_PORT_ENVIRONMENT_VARIABLE =
"PLC4X_SERVER_PORT";
- public static int DEFAULT_PORT = Plc4xConstants.PLC4XTCPDEFAULTPORT;
+ public static int DEFAULT_PORT = Constants.PLC4XTCPDEFAULTPORT;
private static final Logger LOG =
LoggerFactory.getLogger(Plc4xServerAdapter.class);