Skip to content

Commit

Permalink
Correcting Network Type Messages
Browse files Browse the repository at this point in the history
EVDO_B and HSPA+ had some typo
  • Loading branch information
rpungartnik committed May 28, 2015
1 parent 3e989f0 commit 330ae50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/br/com/pungartnik/peganumero/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ protected void onCreate(Bundle savedInstanceState) {
break;

case TelephonyManager.NETWORK_TYPE_EVDO_B: // Current network is EVDO revision B
strNetType = "NETWORK_TYPE_EVDO_";
strNetType = "NETWORK_TYPE_EVDO_B";
break;

case TelephonyManager.NETWORK_TYPE_GPRS: // Current network is GPRS
Expand All @@ -102,7 +102,7 @@ protected void onCreate(Bundle savedInstanceState) {
break;

case TelephonyManager.NETWORK_TYPE_HSPAP: // Current network is HSPA+
strNetType = "";
strNetType = "NETWORK_TYPE_HSPAP";
break;

case TelephonyManager.NETWORK_TYPE_HSUPA: // Current network is HSUPA
Expand Down

0 comments on commit 330ae50

Please sign in to comment.