parent
609e69a801
commit
7316f17674
1 changed files with 4 additions and 1 deletions
|
@ -95,7 +95,10 @@ public class ApnDatabase {
|
|||
final String apn)
|
||||
{
|
||||
|
||||
if (mccmnc == null) throw new InvalidParameterException("mccmnc must not be null");
|
||||
if (mccmnc == null) {
|
||||
Log.w(TAG, "mccmnc was null, returning null");
|
||||
return null;
|
||||
}
|
||||
|
||||
Cursor cursor = null;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue