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

Commit 08ce337d authored by Keisuke Kuroyanagi's avatar Keisuke Kuroyanagi
Browse files

Fix: BinaryDictionaryInfo.isDynamicallyUpdatable().

Change-Id: Ifb3acded5e19f1302c7fcc8881b74addd20c1571
parent 6ec3f63d
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -49,8 +49,7 @@ class BinaryDictionaryInfo {
    }

    AK_FORCE_INLINE bool isDynamicallyUpdatable() const {
        const bool isUpdatableDictionaryFormat = mDictionaryHeader.supportsDynamicUpdate();
        return mIsUpdatable && isUpdatableDictionaryFormat;
        return mIsUpdatable;
    }

 private: