Skip to content

Commit

Permalink
Remove unused method
Browse files Browse the repository at this point in the history
  • Loading branch information
firthm01 committed Jan 22, 2024
1 parent e200636 commit 72bc527
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,6 @@ std::shared_ptr<DataFileManager::DataFile> DataFileManager::getDataFileInfo(cons
return it == availableDataFiles_.end() ? nullptr : *it;
}

bool DataFileManager::dataFileAvailable(const juce::String& filename) {
return getDataFileInfo(filename) != nullptr;
}

void DataFileManager::onSelectedDataFileChange(
std::function<void(std::shared_ptr<DataFile>)> callback) {
selectedDataFileChangeCallback_ = callback;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ class DataFileManager {
bool setSelectedDataFile(const juce::String& filename);
bool setSelectedDataFileDefault();
std::shared_ptr<DataFile> getDataFileInfo(const juce::String& filename);
bool dataFileAvailable(const juce::String& filename);
void onSelectedDataFileChange(
std::function<void(std::shared_ptr<DataFile>)> callback);

Expand Down

0 comments on commit 72bc527

Please sign in to comment.