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

Commit 68d3eaa7 authored by Keisuke Kuroyanagi's avatar Keisuke Kuroyanagi Committed by Android Git Automerger
Browse files

am 08ce337d: Fix: BinaryDictionaryInfo.isDynamicallyUpdatable().

* commit '08ce337d':
  Fix: BinaryDictionaryInfo.isDynamicallyUpdatable().
parents d920c917 08ce337d
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: