Skip to content

Commit

Permalink
fix: fix issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sruehl committed Jun 10, 2022
1 parent bc57935 commit 43227e0
Show file tree
Hide file tree
Showing 3 changed files with 116 additions and 1 deletion.
114 changes: 114 additions & 0 deletions plc4go/protocols/eip/readwrite/model/CIPStructTypeCode.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -1272,7 +1272,7 @@ Collection<DynamicNode> PrivateTransferError() throws Exception {
Collection<DynamicNode> RPM_ALL_Allobjecttypes1() throws Exception {
TestPcapEvaluator pcapEvaluator = pcapEvaluator("RPM_ALL_Allobjecttypes1.pcap");
return List.of(pcapEvaluator.parseEmAll(
skip(31, "set point reference looks completly broken")
skip(31, "set point reference looks completely broken")
));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public class ReadBufferXmlBased implements ReadBuffer, BufferCommons {

public ReadBufferXmlBased(InputStream is) {
XMLInputFactory xmlInputFactory = XMLInputFactory.newInstance();
xmlInputFactory.setProperty(XMLInputFactory.SUPPORT_DTD, false);
try {
reader = xmlInputFactory.createXMLEventReader(is);
} catch (XMLStreamException e) {
Expand Down

0 comments on commit 43227e0

Please sign in to comment.