Skip to content

Commit

Permalink
[NOID] fix implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
vga91 committed Dec 19, 2024
1 parent 746763d commit ba577b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ public long parseXML(Reader input, TerminationGuard terminationGuard, ReaderType
StartElement element = event.asStartElement();
String name = element.getName().getLocalPart();
boolean isNameGexf = readerType.equals(ReaderType.GEXF) && name.equals("gexf");
if (name.equals("graphml") || name.equals("graph") || isNameGexf) continue;
if (name.equals("graphml") || name.equals("graph")) continue;
if (readerType.equals(ReaderType.GEXF) && name.equals("attribute")) {
String id = getAttribute(element, ID);
String type = getAttribute(element, DATA_TYPE);
Expand Down

0 comments on commit ba577b9

Please # to comment.