mirror of
https://github.com/apache/cordova-android.git
synced 2025-01-19 07:02:51 +08:00
removed a couple extra semicolons
This commit is contained in:
parent
cd5bf6195e
commit
7a6a59383b
@ -1054,7 +1054,7 @@ public class ContactAccessorSdk5 extends ContactAccessor {
|
|||||||
if (organizations != null) {
|
if (organizations != null) {
|
||||||
for (int i=0; i<organizations.length(); i++) {
|
for (int i=0; i<organizations.length(); i++) {
|
||||||
JSONObject org = (JSONObject)organizations.get(i);
|
JSONObject org = (JSONObject)organizations.get(i);
|
||||||
String orgId = getJsonString(org, "id");;
|
String orgId = getJsonString(org, "id");
|
||||||
// This is a new organization so do a DB insert
|
// This is a new organization so do a DB insert
|
||||||
if (orgId==null) {
|
if (orgId==null) {
|
||||||
ContentValues contentValues = new ContentValues();
|
ContentValues contentValues = new ContentValues();
|
||||||
@ -1094,7 +1094,7 @@ public class ContactAccessorSdk5 extends ContactAccessor {
|
|||||||
if (ims != null) {
|
if (ims != null) {
|
||||||
for (int i=0; i<ims.length(); i++) {
|
for (int i=0; i<ims.length(); i++) {
|
||||||
JSONObject im = (JSONObject)ims.get(i);
|
JSONObject im = (JSONObject)ims.get(i);
|
||||||
String imId = getJsonString(im, "id");;
|
String imId = getJsonString(im, "id");
|
||||||
// This is a new IM so do a DB insert
|
// This is a new IM so do a DB insert
|
||||||
if (imId==null) {
|
if (imId==null) {
|
||||||
ContentValues contentValues = new ContentValues();
|
ContentValues contentValues = new ContentValues();
|
||||||
@ -1150,7 +1150,7 @@ public class ContactAccessorSdk5 extends ContactAccessor {
|
|||||||
if (websites != null) {
|
if (websites != null) {
|
||||||
for (int i=0; i<websites.length(); i++) {
|
for (int i=0; i<websites.length(); i++) {
|
||||||
JSONObject website = (JSONObject)websites.get(i);
|
JSONObject website = (JSONObject)websites.get(i);
|
||||||
String websiteId = getJsonString(website, "id");;
|
String websiteId = getJsonString(website, "id");
|
||||||
// This is a new website so do a DB insert
|
// This is a new website so do a DB insert
|
||||||
if (websiteId==null) {
|
if (websiteId==null) {
|
||||||
ContentValues contentValues = new ContentValues();
|
ContentValues contentValues = new ContentValues();
|
||||||
|
Loading…
Reference in New Issue
Block a user