mirror of
https://github.com/apache/cordova-android.git
synced 2025-02-27 04:42:51 +08:00
fixing redundant assignment of variable
This commit is contained in:
parent
119f6cca85
commit
7c8db0ea44
@ -1603,10 +1603,8 @@ public class ContactAccessorSdk5 extends ContactAccessor {
|
|||||||
}
|
}
|
||||||
} catch (RemoteException e) {
|
} catch (RemoteException e) {
|
||||||
Log.e(LOG_TAG, e.getMessage(), e);
|
Log.e(LOG_TAG, e.getMessage(), e);
|
||||||
newId = null;
|
|
||||||
} catch (OperationApplicationException e) {
|
} catch (OperationApplicationException e) {
|
||||||
Log.e(LOG_TAG, e.getMessage(), e);
|
Log.e(LOG_TAG, e.getMessage(), e);
|
||||||
newId = null;
|
|
||||||
}
|
}
|
||||||
return newId;
|
return newId;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user