PatrykGala commented on code in PR #962:
URL: https://github.com/apache/plc4x/pull/962#discussion_r1208524908


##########
plc4j/spi/src/main/java/org/apache/plc4x/java/spi/values/PlcValueHandler.java:
##########
@@ -83,6 +83,9 @@ public static PlcValue of(Object[] values) {
         if (value instanceof Long) {
             return PlcLINT.of(value);
         }
+        if (value instanceof BigInteger) {
+            return PlcDINT.of(value);

Review Comment:
   Yes, PlcLINT is better choose. I've pushed the change.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to