summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/calllog/database
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/android/dialer/calllog/database')
-rw-r--r--java/com/android/dialer/calllog/database/MutationApplier.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/java/com/android/dialer/calllog/database/MutationApplier.java b/java/com/android/dialer/calllog/database/MutationApplier.java
index eee810eb8..2fb52558e 100644
--- a/java/com/android/dialer/calllog/database/MutationApplier.java
+++ b/java/com/android/dialer/calllog/database/MutationApplier.java
@@ -68,7 +68,7 @@ public class MutationApplier {
if (!mutations.getInserts().isEmpty()) {
LogUtil.i(
- "CallLogMutations.applyToDatabase", "inserting %d rows", mutations.getInserts().size());
+ "MutationApplier.applyToDatabase", "inserting %d rows", mutations.getInserts().size());
for (Entry<Long, ContentValues> entry : mutations.getInserts().entrySet()) {
long id = entry.getKey();
ContentValues contentValues = entry.getValue();
@@ -82,7 +82,7 @@ public class MutationApplier {
if (!mutations.getUpdates().isEmpty()) {
LogUtil.i(
- "CallLogMutations.applyToDatabase", "updating %d rows", mutations.getUpdates().size());
+ "MutationApplier.applyToDatabase", "updating %d rows", mutations.getUpdates().size());
for (Entry<Long, ContentValues> entry : mutations.getUpdates().entrySet()) {
long id = entry.getKey();
ContentValues contentValues = entry.getValue();
@@ -96,7 +96,7 @@ public class MutationApplier {
if (!mutations.getDeletes().isEmpty()) {
LogUtil.i(
- "CallLogMutations.applyToDatabase", "deleting %d rows", mutations.getDeletes().size());
+ "MutationApplier.applyToDatabase", "deleting %d rows", mutations.getDeletes().size());
String[] questionMarks = new String[mutations.getDeletes().size()];
Arrays.fill(questionMarks, "?");