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

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

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

am: 293746f8

Change-Id: I485f616ec9d5de21d5dcc8ee2a6ed887a54fa8f2
parents 5d8e165f 293746f8
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);
    }
};

};