Bug 1215012 - mdnsd - Firefox Beta Android excessive battery usage r=xeonchen

This commit is contained in:
Mark Finkle 2015-11-23 19:27:20 -05:00
Родитель 223292e382
Коммит f26702a2a5
1 изменённых файлов: 1 добавлений и 6 удалений

Просмотреть файл

@ -40,13 +40,8 @@ public abstract class MulticastDNSManager {
public static MulticastDNSManager getInstance(final Context context) {
if (instance == null) {
// Bug 1188935: There's a bug on Android 4.4 and before.
if (Versions.feature21Plus) {
instance = new NsdMulticastDNSManager(context);
} else {
instance = new DummyMulticastDNSManager();
}
}
return instance;
}