Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean up reference to user callback on cancel or when call complete #413

Merged
merged 12 commits into from
Jul 11, 2017
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Prepare for 3.0.2 release
Update schema
  • Loading branch information
ivan.savytskyi committed Jun 29, 2017
commit ec875e0b03e9d31a6dde074b6547ffeca19767bb
2 changes: 1 addition & 1 deletion MobileBuy/buy3/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=3.0.1
VERSION_NAME=3.0.2

POM_ARTIFACT_ID=buy3
POM_GROUP_ID=com.shopify.mobilebuysdk
Expand Down
17 changes: 16 additions & 1 deletion MobileBuy/buy3/src/main/java/com/shopify/buy3/Storefront.java
Original file line number Diff line number Diff line change
Expand Up @@ -7329,6 +7329,8 @@ public enum CurrencyCode {

CRC,

CVE,

CZK,

DKK,
Expand Down Expand Up @@ -7669,6 +7671,10 @@ public static CurrencyCode fromGraphQl(String value) {
return CRC;
}

case "CVE": {
return CVE;
}

case "CZK": {
return CZK;
}
Expand Down Expand Up @@ -8220,6 +8226,10 @@ public String toString() {
return "CRC";
}

case CVE: {
return "CVE";
}

case CZK: {
return "CZK";
}
Expand Down Expand Up @@ -11721,7 +11731,12 @@ public MailingAddress(JsonObject fields) throws SchemaViolationError {
}

case "formattedArea": {
responseData.put(key, jsonAsString(field.getValue(), key));
String optional1 = null;
if (!field.getValue().isJsonNull()) {
optional1 = jsonAsString(field.getValue(), key);
}

responseData.put(key, optional1);

break;
}
Expand Down

Large diffs are not rendered by default.