Skip to content
Snippets Groups Projects
Commit 4b6a44bb authored by Tobias Pietzsch's avatar Tobias Pietzsch
Browse files

use JsonReader.skipValue() instead nextString() (the next value might not be a String)

parent e5eb37c3
Branches
Tags
No related merge requests found
...@@ -111,7 +111,7 @@ public class BigDataBrowserPlugIn implements PlugIn ...@@ -111,7 +111,7 @@ public class BigDataBrowserPlugIn implements PlugIn
else if ( name.equals( "datasetUrl" ) ) else if ( name.equals( "datasetUrl" ) )
datasetUrl = reader.nextString(); datasetUrl = reader.nextString();
else else
reader.nextString(); reader.skipValue();
} }
if ( id != null ) if ( id != null )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment