Skip to content

Commit

Permalink
removed a couple extra semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
William Shen committed Nov 23, 2011
1 parent cd5bf61 commit 7a6a593
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions framework/src/com/phonegap/ContactAccessorSdk5.java
Expand Up @@ -1054,7 +1054,7 @@ private String modifyContact(String id, JSONObject contact, Account account) {
if (organizations != null) {
for (int i=0; i<organizations.length(); 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
if (orgId==null) {
ContentValues contentValues = new ContentValues();
Expand Down Expand Up @@ -1094,7 +1094,7 @@ private String modifyContact(String id, JSONObject contact, Account account) {
if (ims != null) {
for (int i=0; i<ims.length(); 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
if (imId==null) {
ContentValues contentValues = new ContentValues();
Expand Down Expand Up @@ -1150,7 +1150,7 @@ private String modifyContact(String id, JSONObject contact, Account account) {
if (websites != null) {
for (int i=0; i<websites.length(); 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
if (websiteId==null) {
ContentValues contentValues = new ContentValues();
Expand Down

0 comments on commit 7a6a593

Please sign in to comment.