Resolve minor warnings

This commit is contained in:
Brendan Robert
2024-06-29 13:22:03 -05:00
parent 45201b5721
commit e4e8f95095
2 changed files with 2 additions and 1 deletions

View File

@@ -35,7 +35,6 @@ import javafx.beans.binding.NumberBinding;
import javafx.beans.binding.When;
import javafx.beans.property.BooleanProperty;
import javafx.beans.property.SimpleBooleanProperty;
import javafx.beans.value.ObservableNumberValue;
import javafx.event.EventHandler;
import javafx.fxml.FXML;
import javafx.geometry.Insets;

View File

@@ -415,6 +415,7 @@ public class MediaCache implements Serializable {
}
}
@SuppressWarnings("unused")
private MediaFile resolveLocalCopy(MediaEntry e) {
if (!e.isLocal) {
e = findLocalEntry(e);
@@ -461,6 +462,7 @@ public class MediaCache implements Serializable {
return tempDir;
}
@SuppressWarnings("unused")
private MediaFile convertTemporaryFileToLocal(MediaFile f) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}