[nolist] remove debug spigot-side warning

This commit is contained in:
ajgeiss0702
2023-06-10 09:38:26 -07:00
committed by ajgeiss0702
parent f93fbdcfa9
commit 2b043d10d7
@@ -21,10 +21,7 @@ public class ResponseManager {
public void executeResponse(ComResponse response) {
ResponseKey key = new ResponseKey(response.getIdentifier(), response.getFrom());
Consumer<ComResponse> callback = responseMap.get(key);
if(callback == null) {
System.out.println("[ajQueue] No callback for " + key + " with " + response);
return;
}
if(callback == null) return;
responseMap.remove(key);
callback.accept(response);
}