| Index: components/sync/android/java/src/org/chromium/components/sync/ModelTypeHelper.java
|
| diff --git a/components/sync/android/java/src/org/chromium/components/sync/ModelTypeHelper.java b/components/sync/android/java/src/org/chromium/components/sync/ModelTypeHelper.java
|
| index de5dcfec5bd05342ffb533609a245889862bd0ad..ecdae4ef3fcd3e14e6b74aae87325c03866445c4 100644
|
| --- a/components/sync/android/java/src/org/chromium/components/sync/ModelTypeHelper.java
|
| +++ b/components/sync/android/java/src/org/chromium/components/sync/ModelTypeHelper.java
|
| @@ -36,12 +36,12 @@ public class ModelTypeHelper {
|
|
|
| private static final int[] NON_INVALIDATION_TYPES_ARRAY = new int[] {ModelType.PROXY_TABS};
|
|
|
| - private static TestDelegate sDelegate = null;
|
| + private static TestDelegate sDelegate;
|
|
|
| // Convenience sets for checking whether a type can have invalidations. Some ModelTypes
|
| // such as PROXY_TABS are not real types and can't be registered. Initializing these
|
| // once reduces toNotificationType() calls in the isInvalidationType() method.
|
| - private static Set<String> sNonInvalidationTypes = null;
|
| + private static Set<String> sNonInvalidationTypes;
|
|
|
| /**
|
| * Initializes the non-invalidation sets. Called lazily the first time they're needed.
|
|
|