Skip to content

Commit

Permalink
Fixed checkstyle error in BleScanException. (Missing default switch c…
Browse files Browse the repository at this point in the history
…lause)
  • Loading branch information
dariuszseweryn committed Nov 11, 2016
1 parent 4daaed1 commit 2fec924
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ private String reasonDescription() {
return "LOCATION_PERMISSION_MISSING";
case LOCATION_SERVICES_DISABLED:
return "LOCATION_SERVICES_DISABLED";
default:
return "UNKNOWN";
}
return "UNKNOWN";
}
}

0 comments on commit 2fec924

Please sign in to comment.