Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3931424a authored by Steve Kondik's avatar Steve Kondik
Browse files

wimax: Fix isWimaxSupported method.

I place all blame on Eclipse's autocomplete for this derpfest :(

Change-Id: I4a153dbdf840263a95cc9a9e2dcc1280c43f409e
parent 17eb6256
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -49,6 +49,6 @@ public class WimaxConstants {
    public static final String EXTRA_NEW_STATE = "newState";

    public static boolean isWimaxSupported(Context context) {
        return context.getSystemService(Context.WIFI_SERVICE) != null;
        return context.getSystemService(Context.WIMAX_SERVICE) != null;
    }
}