- fixed bug in range of GOOSE APPID

pull/6/head
Michael Zillgith 10 years ago
parent 8521a42f0d
commit 16fe7c2a7c

@ -55,7 +55,7 @@ public class GSEAddress {
else if (type.equals("APPID")) {
appId = Integer.parseInt(pNode.getTextContent(), 16);
if (appId > 0xfff)
if (appId > 0xffff)
throw new SclParserException(addressNode, "APPID value out of range");
}
else if (type.equals("MAC-Address")) {

Loading…
Cancel
Save