Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 93b24545 authored by Patrick Rohr's avatar Patrick Rohr
Browse files

Remove Unused Member from Default Impl

Bug: 194476544
Test: atest VtsHalTvTunerV1_0TargetTest && atest
VtsHalTvTunerV1_1TargetTest

Change-Id: I347ca125bdc557e36ca42b7a4f308a6151e12fe5
parent 0a18c16b
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -131,7 +131,6 @@ Return<Result> Dvr::stop() {

    lock_guard<mutex> lock(mDvrThreadLock);

    mIsRecordStarted = false;
    mDemux->setIsRecording(false);

    return Result::SUCCESS;
+1 −5
Original line number Diff line number Diff line
@@ -155,10 +155,6 @@ class Dvr : public IDvr {
    std::mutex mDvrThreadLock;

    const bool DEBUG_DVR = false;

    // Booleans to check if recording is running.
    // Recording is ready when both of the following are set to true.
    bool mIsRecordStarted = false;
};

}  // namespace implementation
+0 −1
Original line number Diff line number Diff line
@@ -152,7 +152,6 @@ Return<Result> Dvr::stop() {
    mDvrThreadRunning = false;
    lock_guard<mutex> lock(mDvrThreadLock);

    mIsRecordStarted = false;
    mDemux->setIsRecording(false);

    return Result::SUCCESS;
+1 −5
Original line number Diff line number Diff line
@@ -151,10 +151,6 @@ class Dvr : public IDvr {
    std::mutex mDvrThreadLock;

    const bool DEBUG_DVR = false;

    // Booleans to check if recording is running.
    // Recording is ready when both of the following are set to true.
    bool mIsRecordStarted = false;
};

}  // namespace implementation