Skip to content

Commit

Permalink
Fix gephi#1575 Import of GraphML: Specific attribute IDs are dismissed
Browse files Browse the repository at this point in the history
  • Loading branch information
eduramiba committed Jul 7, 2017
1 parent e2fa9e8 commit e07c32b
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,6 @@ private void readNodeAttValue(XMLStreamReader reader, NodeDraft node) throws Exc
} catch (Exception e) {
report.logIssue(new Issue(NbBundle.getMessage(ImporterGraphML.class, "importerGraphML_error_datavalue", fore, node, prop.toString()), Issue.Level.SEVERE));
}
return;
}

//Data attribute value
Expand Down Expand Up @@ -511,7 +510,6 @@ private void readEdgeAttValue(XMLStreamReader reader, EdgeDraft edge) throws Exc
} catch (Exception e) {
report.logIssue(new Issue(NbBundle.getMessage(ImporterGraphML.class, "importerGraphML_error_datavalue", fore, edge, prop.toString()), Issue.Level.SEVERE));
}
return;
}

//Data attribute value
Expand Down Expand Up @@ -567,6 +565,7 @@ private void readAttribute(XMLStreamReader reader) throws Exception {
property = true;
}
}

if (property) {
return;
}
Expand Down

0 comments on commit e07c32b

Please sign in to comment.