]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - src/com/hughes/android/util/PersistentObjectCache.java
go
[Dictionary.git] / src / com / hughes / android / util / PersistentObjectCache.java
index cd5b5e3c27e351c558f856203401201cbb788b06..aa730bc9edb8772d21766d5845a7ebcefa05b40b 100644 (file)
@@ -57,6 +57,9 @@ public class PersistentObjectCache {
 
   private PersistentObjectCache(final Context context) {
     dir = context.getFilesDir();
+    if (dir == null) {
+      throw new RuntimeException("context.getFilesDir() == null");
+    }
   }
   
   public static synchronized PersistentObjectCache getInstance() {