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

Commit 7df4e871 authored by Marco Nelissen's avatar Marco Nelissen
Browse files

DecryptHandle: remove unused operators

Nothing was using these, so remove them.

Test: build, atest cts/tests/tests/drm/src/android/drm/cts/DRMTest.java

Change-Id: I4545951f6d6faa21ef35732306302a52b7d941d8
parent da161ed4
Loading
Loading
Loading
Loading
+0 −8
Original line number Diff line number Diff line
@@ -317,14 +317,6 @@ public:
    ~DecryptHandle() {
        delete decryptInfo; decryptInfo = NULL;
    }

    bool operator<(const DecryptHandle& handle) const {
        return (decryptId < handle.decryptId);
    }

    bool operator==(const DecryptHandle& handle) const {
        return (decryptId == handle.decryptId);
    }
};

};