Various cleanup, slowed down UI FPS counter

This commit is contained in:
Banks Troutman
2019-09-21 13:05:00 -04:00
parent e45b679dc9
commit 038e84ce0d
12 changed files with 45 additions and 90 deletions

View File

@@ -15,7 +15,6 @@ public class CameraDeserializer implements JsonDeserializer<Camera> {
public Camera deserialize(JsonElement jsonElement, Type type, JsonDeserializationContext context) throws JsonParseException {
var jsonObj = jsonElement.getAsJsonObject();
var camFOV = jsonObj.get("FOV").getAsDouble();
var camPath = jsonObj.get("path").getAsString();
var camName = jsonObj.get("name").getAsString();
var pipelines = jsonObj.get("pipelines");