Skip to content
Snippets Groups Projects
Commit 16e785d3 authored by Guillaume PICHON's avatar Guillaume PICHON
Browse files

Correction of a bug on the writting part for the configuration by properties.

parent 8f60ee2b
Branches
No related tags found
No related merge requests found
......@@ -111,7 +111,7 @@ public class OpcUaAttributeParser {
if (nbWriteParts > 0) {
writeParts = new ArrayList<>(nbWriteParts);
for (int i = 0; i < nbWriteParts; i++) {
String writePart = elems[i + 2].trim();
String writePart = elems[OPCUA_WRITE_IDX+i].trim();
OpcUaSimpleNode writeNode = null;
if (writePart.length() > 0) {
writeNode = splitNamespaceTypeId(writePart);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment