Skip to content
Snippets Groups Projects
Commit ab83d03f authored by HongKee Moon's avatar HongKee Moon
Browse files

Make safer way to handle json reader

In order to handle the higher version of BigDataServer, it should skip the String value with reader.nextString() call for default.
parent f21911df
No related branches found
No related tags found
No related merge requests found
......@@ -101,6 +101,8 @@ public class BigDataBrowserPlugIn implements PlugIn
thumbnailUrl = reader.nextString();
else if ( name.equals( "datasetUrl" ) )
datasetUrl = reader.nextString();
else
reader.nextString();
}
if ( id != null )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment