-
Bug
-
Resolution: Not an Issue
-
P4
-
None
-
17
-
generic
-
generic
ADDITIONAL SYSTEM INFORMATION :
JDK17 doesn't support ZWG currency which is valid currency globally. As per report 1st Sept 2024 onwards ZWL should be demise from support(which is currently supported by JDK 17) and ZWG should be made available as available currency list.
A DESCRIPTION OF THE PROBLEM :
JDK17 doesn't support ZWG currency which is valid currency globally. As per report 1st Sept 2024 onwards ZWL should be demise from support(which is currently supported by JDK 17) and ZWG should be made available as available currency list.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
import java.util.Currency;
import java.util.Set;
public class Main {
public static void main(String[] args) {
System.out.println("hello, world");
Set<Currency> currencies = Currency.getAvailableCurrencies();
for (Currency currency : currencies) {
System.out.println(currency.getCurrencyCode());
}
}
}
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
ZWG should be part of supported currency list
ACTUAL -
ZWG is not listed in available currency list.
---------- BEGIN SOURCE ----------
import java.util.Currency;
import java.util.Set;
public class Main {
public static void main(String[] args) {
System.out.println("hello, world");
Set<Currency> currencies = Currency.getAvailableCurrencies();
for (Currency currency : currencies) {
System.out.println(currency.getCurrencyCode());
}
}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
its blocker issue
FREQUENCY : always
JDK17 doesn't support ZWG currency which is valid currency globally. As per report 1st Sept 2024 onwards ZWL should be demise from support(which is currently supported by JDK 17) and ZWG should be made available as available currency list.
A DESCRIPTION OF THE PROBLEM :
JDK17 doesn't support ZWG currency which is valid currency globally. As per report 1st Sept 2024 onwards ZWL should be demise from support(which is currently supported by JDK 17) and ZWG should be made available as available currency list.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
import java.util.Currency;
import java.util.Set;
public class Main {
public static void main(String[] args) {
System.out.println("hello, world");
Set<Currency> currencies = Currency.getAvailableCurrencies();
for (Currency currency : currencies) {
System.out.println(currency.getCurrencyCode());
}
}
}
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
ZWG should be part of supported currency list
ACTUAL -
ZWG is not listed in available currency list.
---------- BEGIN SOURCE ----------
import java.util.Currency;
import java.util.Set;
public class Main {
public static void main(String[] args) {
System.out.println("hello, world");
Set<Currency> currencies = Currency.getAvailableCurrencies();
for (Currency currency : currencies) {
System.out.println(currency.getCurrencyCode());
}
}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
its blocker issue
FREQUENCY : always
- relates to
-
JDK-8334653 ISO 4217 Amendment 177 Update
- Closed