]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - src/com/hughes/android/dictionary/engine/Index.java
Added Apache license.
[Dictionary.git] / src / com / hughes / android / dictionary / engine / Index.java
index f05c0dc772dfe54f0f4d62e923e6475c04b5e140..8e9ca9628ac70db5e002b0d4df751520e0e5bb48 100644 (file)
@@ -1,3 +1,17 @@
+// Copyright 2011 Google Inc. All Rights Reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
 /**
  * 
  */
@@ -157,6 +171,9 @@ public final class Index implements RAFSerializable<Index> {
     final Transliterator normalizer = normalizer();
     if (TransliteratorManager.init(null)) {
       token = normalizer.transliterate(token);
+    } else {
+      // Do our best since the Transliterators aren't up yet.
+      token = token.toLowerCase();
     }
 
     int start = 0;