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

* commit '08ce337d3f670b2532b5eac9d00b6593fb571b4a':
  Fix: BinaryDictionaryInfo.isDynamicallyUpdatable().
main
Keisuke Kuroyanagi 2013-08-14 21:44:09 -07:00 committed by Android Git Automerger
commit 68d3eaa778
1 changed files with 1 additions and 2 deletions

View File

@ -49,8 +49,7 @@ class BinaryDictionaryInfo {
}
AK_FORCE_INLINE bool isDynamicallyUpdatable() const {
const bool isUpdatableDictionaryFormat = mDictionaryHeader.supportsDynamicUpdate();
return mIsUpdatable && isUpdatableDictionaryFormat;
return mIsUpdatable;
}
private: