Index: chrome/android/javatests/src/org/chromium/chrome/browser/preferences/privacy/ClearBrowsingDataPreferencesTest.java |
diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/preferences/privacy/ClearBrowsingDataPreferencesTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/preferences/privacy/ClearBrowsingDataPreferencesTest.java |
index 8689b50062cfee8ef38868831f93586a002e3e79..a347934d41125572fce740f817ff77e558f3eb96 100644 |
--- a/chrome/android/javatests/src/org/chromium/chrome/browser/preferences/privacy/ClearBrowsingDataPreferencesTest.java |
+++ b/chrome/android/javatests/src/org/chromium/chrome/browser/preferences/privacy/ClearBrowsingDataPreferencesTest.java |
@@ -104,7 +104,7 @@ public class ClearBrowsingDataPreferencesTest |
WebappRegistry.getRegisteredWebappIds(getActivity(), new WebappRegistry.FetchCallback() { |
@Override |
public void onWebappIdsRetrieved(Set<String> ids) { |
- assertEquals(new HashSet<String>(Arrays.asList("first")), ids); |
+ assertEquals(new HashSet<>(Arrays.asList("first")), ids); |
pkotwicz
2016/08/15 15:27:52
The changes in this file seem unrelated to your CL
Yaron
2016/08/16 01:08:42
eclipse auto-fixes accordingly to its configuratio
|
mCallbackCalled = true; |
} |
}); |
@@ -159,7 +159,7 @@ public class ClearBrowsingDataPreferencesTest |
WebappRegistry.getRegisteredWebappIds(getActivity(), new WebappRegistry.FetchCallback() { |
@Override |
public void onWebappIdsRetrieved(Set<String> ids) { |
- assertEquals(new HashSet<String>(Arrays.asList("first")), ids); |
+ assertEquals(new HashSet<>(Arrays.asList("first")), ids); |
mCallbackCalled = true; |
} |
}); |
@@ -186,7 +186,7 @@ public class ClearBrowsingDataPreferencesTest |
WebappRegistry.getRegisteredWebappIds(getActivity(), new WebappRegistry.FetchCallback() { |
@Override |
public void onWebappIdsRetrieved(Set<String> ids) { |
- assertEquals(new HashSet<String>(Arrays.asList("first")), ids); |
+ assertEquals(new HashSet<>(Arrays.asList("first")), ids); |
mCallbackCalled = true; |
} |
}); |