Skip to content
Snippets Groups Projects
Commit ccff7455 authored by Ludovic Claude's avatar Ludovic Claude
Browse files

Mining returns a Json object, not an array

parent 75506116
No related branches found
No related tags found
No related merge requests found
package eu.hbp.mip.model;
import com.google.gson.Gson;
import com.google.gson.JsonArray;
import com.google.gson.JsonObject;
import com.google.gson.JsonParser;
import com.google.gson.*;
import java.util.Date;
......@@ -57,7 +54,7 @@ public class Mining {
if (this.data != null) {
exp.remove("data");
JsonArray jsonResult = parser.parse(this.data).getAsJsonArray();
JsonElement jsonResult = parser.parse(this.data);
exp.add("data", jsonResult);
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment