Skip to content

Commit

Permalink
#1876 Unifies reentrant lock between tuners and frequency controller.
Browse files Browse the repository at this point in the history
  • Loading branch information
sheirerd committed Apr 29, 2024
1 parent d00530a commit ec43476
Showing 1 changed file with 3 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
import io.github.dsheirer.source.InvalidFrequencyException;
import io.github.dsheirer.source.SourceEvent;
import io.github.dsheirer.source.SourceException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class FrequencyController
{
Expand All @@ -52,15 +52,6 @@ public FrequencyController(Tunable tunable)
mTunable = tunable;
}


// /**
// * Lock for controlling access to frequency control plane, event processor subscriptions and source event broadcasts.
// */
// public ReentrantLock getFrequencyControllerLock()
// {
// return mLock;
// }
//
/**
* Prepare for disposal of this instance.
*/
Expand Down

0 comments on commit ec43476

Please sign in to comment.