Removed not needed/used RecorderSettings#startOnConnected

This commit is contained in:
kohlerpop1
2024-06-18 15:36:03 -04:00
parent 0b9852c4d4
commit 26659bb37d
2 changed files with 0 additions and 2 deletions

View File

@@ -76,7 +76,6 @@ public class RecorderListener implements LiveRecorder {
if (isConnected()) if (isConnected())
return; return;
liveDownloadThread = new Thread(() -> { liveDownloadThread = new Thread(() -> {
try { try {
liveClient.getLogger().info("Recording started"); liveClient.getLogger().info("Recording started");

View File

@@ -39,7 +39,6 @@ public class RecorderSettings {
private String format; private String format;
private File outputFile; private File outputFile;
private Function<String,DownloadData> prepareDownloadData; private Function<String,DownloadData> prepareDownloadData;
private boolean startOnConnected;
private boolean stopOnDisconnect = true; private boolean stopOnDisconnect = true;
public static RecorderSettings DEFAULT() { public static RecorderSettings DEFAULT() {