Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: adblockplussbrowser/src/org/adblockplus/sbrowser/contentblocker/ListedSubscriptionsPreferenceCategory.java

Issue 29436555: Issue 5231 - Use Java 7 features (Closed)
Patch Set: Created May 11, 2017, 6:30 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-2016 Eyeo GmbH 3 * Copyright (C) 2006-2016 Eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 { 45 {
46 private Engine engine = null; 46 private Engine engine = null;
47 private boolean isEnabledView = false; 47 private boolean isEnabledView = false;
48 48
49 private static final String[] LANGUAGE_TRANSLATIONS = 49 private static final String[] LANGUAGE_TRANSLATIONS =
50 { 50 {
51 "id", "Bahasa Indonesia", 51 "id", "Bahasa Indonesia",
52 "he", "עברית" 52 "he", "עברית"
53 }; 53 };
54 54
55 private static final HashMap<String, String> LANGUAGE_TRANSLATION_MAP = new Ha shMap<String, String>(); 55 private static final HashMap<String, String> LANGUAGE_TRANSLATION_MAP = new Ha shMap<>();
56 56
57 static 57 static
58 { 58 {
59 for (int i = 0; i < LANGUAGE_TRANSLATIONS.length; i += 2) 59 for (int i = 0; i < LANGUAGE_TRANSLATIONS.length; i += 2)
60 { 60 {
61 LANGUAGE_TRANSLATION_MAP.put(LANGUAGE_TRANSLATIONS[i], LANGUAGE_TRANSLATIO NS[i + 1]); 61 LANGUAGE_TRANSLATION_MAP.put(LANGUAGE_TRANSLATIONS[i], LANGUAGE_TRANSLATIO NS[i + 1]);
62 } 62 }
63 } 63 }
64 64
65 public ListedSubscriptionsPreferenceCategory(final Context context) 65 public ListedSubscriptionsPreferenceCategory(final Context context)
(...skipping 18 matching lines...) Expand all
84 EngineService.startService(this.getContext().getApplicationContext(), this); 84 EngineService.startService(this.getContext().getApplicationContext(), this);
85 super.onAttachedToActivity(); 85 super.onAttachedToActivity();
86 } 86 }
87 87
88 @Override 88 @Override
89 public void onEngineCreated(final Engine engine, final boolean success) 89 public void onEngineCreated(final Engine engine, final boolean success)
90 { 90 {
91 this.engine = engine; 91 this.engine = engine;
92 this.isEnabledView = this.getTitleRes() == R.string.enabled_subscriptions; 92 this.isEnabledView = this.getTitleRes() == R.string.enabled_subscriptions;
93 93
94 final HashMap<String, Locale> localeMap = new HashMap<String, Locale>(); 94 final HashMap<String, Locale> localeMap = new HashMap<>();
95 for (final Locale l : Locale.getAvailableLocales()) 95 for (final Locale l : Locale.getAvailableLocales())
96 { 96 {
97 final String lang = l.getLanguage(); 97 final String lang = l.getLanguage();
98 if (!lang.isEmpty()) 98 if (!lang.isEmpty())
99 { 99 {
100 localeMap.put(lang.toLowerCase(), l); 100 localeMap.put(lang.toLowerCase(), l);
101 } 101 }
102 } 102 }
103 103
104 if (success) 104 if (success)
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 public boolean onPreferenceChange(final Preference preference, final Object ne wValue) 191 public boolean onPreferenceChange(final Preference preference, final Object ne wValue)
192 { 192 {
193 final String id = preference.getKey(); 193 final String id = preference.getKey();
194 final boolean enabled = ((Boolean) newValue).booleanValue(); 194 final boolean enabled = ((Boolean) newValue).booleanValue();
195 195
196 this.engine.changeSubscriptionState(id, enabled); 196 this.engine.changeSubscriptionState(id, enabled);
197 197
198 return true; 198 return true;
199 } 199 }
200 } 200 }
OLDNEW

Powered by Google App Engine
This is Rietveld