Added TODOs

This commit is contained in:
Stankman 2023-06-17 18:34:04 -05:00
parent 0a14f35093
commit d5036979c4

View File

@ -61,9 +61,12 @@ public abstract class InteractionWired extends InteractionDefault implements IWi
this.wiredSettings = new WiredSettings(); this.wiredSettings = new WiredSettings();
if(wiredData.startsWith("{")) { if(wiredData.startsWith("{")) {
//TODO CHECK IF WIRED_DATA IS MS4_DATA
this.wiredSettings = WiredHandler.getObjectMapper().readValue(wiredData, WiredSettings.class); this.wiredSettings = WiredHandler.getObjectMapper().readValue(wiredData, WiredSettings.class);
//TODO CHECK IF WIRED_DATA IS MS3_DATA AND READ IT
} else { } else {
//TODO READ OLD DATA SAVING //TODO READ MS1-MS2_DATA
} }
} }