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

Commit 76a064fd authored by Keisuke Kuroyanagi's avatar Keisuke Kuroyanagi Committed by Android Git Automerger
Browse files

am 60eb2501: Support ver3 dict in native code.

* commit '60eb2501':
  Support ver3 dict in native code.
parents 74e5c306 60eb2501
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -61,8 +61,7 @@ const int BinaryDictionaryFormatUtils::HEADER_VERSION_2_MINIMUM_SIZE = 12;
            if (ByteArrayUtils::readUint16(dict, 4) == 2) {
                return VERSION_2;
            } else if (ByteArrayUtils::readUint16(dict, 4) == 3) {
                // TODO: Support version 3 dictionary.
                return UNKNOWN_VERSION;
                return VERSION_3;
            } else {
                return UNKNOWN_VERSION;
            }