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

Commit 35dd4b96 authored by Marco Nelissen's avatar Marco Nelissen Committed by android-build-merger
Browse files

Merge "DecryptHandle: remove unused operators"

am: 0501baaa

Change-Id: I337cad522a5ceb77d6245c574998550185981c29
parents 1a7391fb 0501baaa
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);
    }
};

};