Skip to content

Remove dependencies on commons-codec.jar and guava-r09.jar (to reduce java method count by ~7900 methods) #121

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 18, 2014
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove dependencies on commons-codec.jar and guava-r09.jar (to reduce…
… java method count by ~7900 methods)
  • Loading branch information
jeffdcamp committed Feb 11, 2014
commit 7630e6ec5192c39553f0b6f8e3384e753465e4b7
4 changes: 1 addition & 3 deletions src/net/sqlcipher/database/SQLiteDatabase.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,6 @@
import android.util.Log;
import android.util.Pair;

import com.google.common.collect.Maps;

/**
* Exposes methods to manage a SQLite database.
* <p>SQLiteDatabase has methods to create, delete, execute SQL commands, and
Expand Down Expand Up @@ -320,7 +318,7 @@ public static void loadLibs (Context context, File workingDir)
* (@link setMaxCacheSize(int)}). its default is 0 - i.e., no caching by default because
* most of the apps don't use "?" syntax in their sql, caching is not useful for them.
*/
/* package */ Map<String, SQLiteCompiledSql> mCompiledQueries = Maps.newHashMap();
/* package */ Map<String, SQLiteCompiledSql> mCompiledQueries = new HashMap<String, SQLiteCompiledSql>();
/**
* @hide
*/
Expand Down