|
@@ -200,7 +200,7 @@ public class ImportDataController extends BaseController {
|
|
|
JSONObject newJson = new JSONObject();
|
|
|
newJson.put("uuid", objectJson.getString("uuid"));
|
|
|
JSONObject puck = objectJson.getJSONObject("puck");
|
|
|
- puck.put("y", puck.getDoubleValue("y") * -1);
|
|
|
+ puck.put("y", puck.getDoubleValue("y"));
|
|
|
puck.remove("z");
|
|
|
newJson.put("puck", puck);
|
|
|
newJson.put("subgroup", objectJson.getString("subgroup"));
|
|
@@ -555,7 +555,7 @@ public class ImportDataController extends BaseController {
|
|
|
JSONObject newJson = new JSONObject();
|
|
|
newJson.put("uuid", objectJson.getString("uuid"));
|
|
|
JSONObject puck = objectJson.getJSONObject("puck");
|
|
|
- puck.put("y", puck.getDoubleValue("y") * -1);
|
|
|
+ puck.put("y", puck.getDoubleValue("y"));
|
|
|
puck.remove("z");
|
|
|
newJson.put("puck", puck);
|
|
|
newJson.put("subgroup", objectJson.getString("subgroup"));
|