You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are using graphstream 2.0 from maven central in a Java 16 project.
Somehow I cannot read a simple graphml file with node attributes. The __characters method within the FileSourceXML#Parser always returns "[Stax Event #4]" as a value although the original double value is 0.0. I tracked it down to this line:
We are using graphstream 2.0 from maven central in a Java 16 project.
Somehow I cannot read a simple graphml file with node attributes. The __characters method within the FileSourceXML#Parser always returns "[Stax Event #4]" as a value although the original double value is 0.0. I tracked it down to this line:
gs-core/src/org/graphstream/stream/file/FileSourceXML.java
Line 463 in 18d5f00
org.codehaus.stax2.ri.evt.CharacterEventImpl.asCharacters()
seems to be the wrong method to get the data.it should be e.getData() or e.mContent
The text was updated successfully, but these errors were encountered: