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

Commit 293746f8 authored by Marco Nelissen's avatar Marco Nelissen Committed by android-build-merger
Browse files

Merge "DecryptHandle: remove unused operators" am: 0501baaa

am: 35dd4b96

Change-Id: I7f82c235494e925265e770b8d676eba6e2de3bfd
parents 0a8e6940 35dd4b96
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);
    }
};

};