1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-23 18:02:15 -05:00

Remove duplicate code. use Utility.hasConnectivity()

This commit is contained in:
Koji Arai 2014-04-28 15:35:33 +09:00
parent 51aa34d52b
commit 615a1ae9a7

View File

@ -1078,15 +1078,7 @@ public class MessageListFragment extends SherlockFragment implements OnItemClick
// Check if we have connectivity. Cache the value.
if (mHasConnectivity == null) {
final ConnectivityManager connectivityManager =
(ConnectivityManager) getActivity().getApplication().getSystemService(
Context.CONNECTIVITY_SERVICE);
final NetworkInfo netInfo = connectivityManager.getActiveNetworkInfo();
if (netInfo != null && netInfo.getState() == NetworkInfo.State.CONNECTED) {
mHasConnectivity = true;
} else {
mHasConnectivity = false;
}
mHasConnectivity = Utility.hasConnectivity(getActivity().getApplication());
}
mLocalBroadcastManager.registerReceiver(mCacheBroadcastReceiver, mCacheIntentFilter);