You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by jf...@apache.org on 2020/03/11 16:15:47 UTC

[plc4x] 05/06: Typo / Commented out unused stuff.

This is an automated email from the ASF dual-hosted git repository.

jfeinauer pushed a commit to branch rel/0.6
in repository https://gitbox.apache.org/repos/asf/plc4x.git

commit 09cec6c3d78ed61c78c3f69679c0befe1d85498f
Author: Julian Feinauer <j....@pragmaticminds.de>
AuthorDate: Tue Mar 10 22:33:42 2020 +0100

    Typo / Commented out unused stuff.
---
 .../plc4x/java/opcua/connection/BaseOpcuaPlcConnection.java  | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/plc4j/drivers/opcua/src/main/java/org/apache/plc4x/java/opcua/connection/BaseOpcuaPlcConnection.java b/plc4j/drivers/opcua/src/main/java/org/apache/plc4x/java/opcua/connection/BaseOpcuaPlcConnection.java
index 5ca6783..f642aa4 100644
--- a/plc4j/drivers/opcua/src/main/java/org/apache/plc4x/java/opcua/connection/BaseOpcuaPlcConnection.java
+++ b/plc4j/drivers/opcua/src/main/java/org/apache/plc4x/java/opcua/connection/BaseOpcuaPlcConnection.java
@@ -67,10 +67,10 @@ public abstract class BaseOpcuaPlcConnection extends AbstractPlcConnection imple
                             password = paramValue;
                             logger.debug("Found Parameter 'password' with value {}", password);
                             break;
-                        case "certFile":
-                            certFile = paramValue;
-                            logger.debug("Found Parameter 'certFile' with value {}", certFile);
-                            break;
+//                        case "certFile":
+//                            certFile = paramValue;
+//                            logger.debug("Found Parameter 'certFile' with value {}", certFile);
+//                            break;
                         case "securityPolicy":
                             logger.debug("Got value for security policy: '{}', trying to parse", paramValue);
                             try {
@@ -84,10 +84,6 @@ public abstract class BaseOpcuaPlcConnection extends AbstractPlcConnection imple
                             keyStoreFile = paramValue;
                             logger.debug("Found Parameter 'keyStoreFile' with value {}", keyStoreFile);
                             break;
-//                        case "keyStorePassword":
-//                            keyStorePassword = paramValue;
-//                            logger.debug("Found Parameter 'keyStorePassword' with value {}", keyStorePassword);
-//                            break;
                         default:
                             logger.debug("Unknown parameter {} with value {}", paramName, paramValue);
                     }