Skip to content

Commit 7630e6e

Browse files
committed
Remove dependencies on commons-codec.jar and guava-r09.jar (to reduce java method count by ~7900 methods)
1 parent 817cff1 commit 7630e6e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/net/sqlcipher/database/SQLiteDatabase.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@
5252
import android.util.Log;
5353
import android.util.Pair;
5454

55-
import com.google.common.collect.Maps;
56-
5755
/**
5856
* Exposes methods to manage a SQLite database.
5957
* <p>SQLiteDatabase has methods to create, delete, execute SQL commands, and
@@ -320,7 +318,7 @@ public static void loadLibs (Context context, File workingDir)
320318
* (@link setMaxCacheSize(int)}). its default is 0 - i.e., no caching by default because
321319
* most of the apps don't use "?" syntax in their sql, caching is not useful for them.
322320
*/
323-
/* package */ Map<String, SQLiteCompiledSql> mCompiledQueries = Maps.newHashMap();
321+
/* package */ Map<String, SQLiteCompiledSql> mCompiledQueries = new HashMap<String, SQLiteCompiledSql>();
324322
/**
325323
* @hide
326324
*/

0 commit comments

Comments
 (0)