fixing redundant assignment of variable

This commit is contained in:
William Shen 2011-11-23 10:39:20 -08:00
parent 119f6cca85
commit 7c8db0ea44

View File

@ -1603,10 +1603,8 @@ public class ContactAccessorSdk5 extends ContactAccessor {
}
} catch (RemoteException e) {
Log.e(LOG_TAG, e.getMessage(), e);
newId = null;
} catch (OperationApplicationException e) {
Log.e(LOG_TAG, e.getMessage(), e);
newId = null;
}
return newId;
}