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

fixed crash due NPE in case Locale's country has "no currency" #311

Merged
merged 1 commit into from
Jun 22, 2018

Conversation

dkimitsa
Copy link
Contributor

such as Antarctica

@Tom-Ski Tom-Ski merged commit a973a07 into MobiVM:master Jun 22, 2018
@dkimitsa dkimitsa deleted the antarctica_currency_fix branch June 22, 2018 10:13
@@ -97,6 +97,11 @@ public DecimalFormatSymbols(Locale locale) {
this.locale = locale;
try {
currency = Currency.getInstance(locale);
if (currency == null) {
// dkimitsa: for some countries there is no currecy like Antarctida AQ so pick currency
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

currecy -> currency
directcly -> directly

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed as part of #315

dkimitsa added a commit to dkimitsa/robovm that referenced this pull request Jul 3, 2018
florianf pushed a commit that referenced this pull request Jul 7, 2018
* fixed #309 Cannot Use Step Filters while Debugging in Eclipse
* EXCEPTION_ONLY validation fixed (root case)
* JDWP version downgraded to 1.5 as Eclipse uses features that are not supported
* robovm.version set to 2.3.5-SNAPSHOT

* fixed spelling as per #311 (review)
dkimitsa added a commit to dkimitsa/robovm that referenced this pull request Jan 3, 2019
* fixed MobiVM#309 Cannot Use Step Filters while Debugging in Eclipse
* EXCEPTION_ONLY validation fixed (root case)
* JDWP version downgraded to 1.5 as Eclipse uses features that are not supported
* robovm.version set to 2.3.5-SNAPSHOT

* fixed spelling as per MobiVM#311 (review)

(cherry picked from commit d152b61)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants