Skip to content

Commit

Permalink
apply automatic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ladydascalie authored and github-actions[bot] committed Sep 14, 2024
1 parent 1f727cc commit 7a8a944
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 19 deletions.
7 changes: 0 additions & 7 deletions cmd/list_one.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1875,13 +1875,6 @@
<CcyNbr>967</CcyNbr>
<CcyMnrUnts>2</CcyMnrUnts>
</CcyNtry>
<CcyNtry>
<CtryNm>ZIMBABWE</CtryNm>
<CcyNm>Zimbabwe Dollar</CcyNm>
<Ccy>ZWL</Ccy>
<CcyNbr>932</CcyNbr>
<CcyMnrUnts>2</CcyMnrUnts>
</CcyNtry>
<CcyNtry>
<CtryNm>ZIMBABWE</CtryNm>
<CcyNm>Zimbabwe Gold</CcyNm>
Expand Down
4 changes: 0 additions & 4 deletions std.go
Original file line number Diff line number Diff line change
Expand Up @@ -424,8 +424,6 @@ var (
ZMW = Currency{code: "ZMW", minorUnits: 2, factor: 100, name: "Zambian Kwacha"}
// ZWG currency struct
ZWG = Currency{code: "ZWG", minorUnits: 2, factor: 100, name: "Zimbabwe Gold"}
// ZWL currency struct
ZWL = Currency{code: "ZWL", minorUnits: 2, factor: 100, name: "Zimbabwe Dollar"}
)

var currencies = map[string]Currency{
Expand Down Expand Up @@ -608,7 +606,6 @@ var currencies = map[string]Currency{
"ZAR": ZAR,
"ZMW": ZMW,
"ZWG": ZWG,
"ZWL": ZWL,
}

// ValidCodes is provided so that you may build your own validation against it
Expand Down Expand Up @@ -792,5 +789,4 @@ var ValidCodes = []string{
"ZAR",
"ZMW",
"ZWG",
"ZWL",
}
3 changes: 1 addition & 2 deletions std.kt
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,7 @@ data class Currency(val currencyCode: String, val minorUnits: Int, val factor: I
"YER" to Currency("YER", 2, 100, "Yemeni Rial"),
"ZAR" to Currency("ZAR", 2, 100, "Rand"),
"ZMW" to Currency("ZMW", 2, 100, "Zambian Kwacha"),
"ZWG" to Currency("ZWG", 2, 100, "Zimbabwe Gold"),
"ZWL" to Currency("ZWL", 2, 100, "Zimbabwe Dollar")
"ZWG" to Currency("ZWG", 2, 100, "Zimbabwe Gold")
)
}
}
4 changes: 1 addition & 3 deletions std.swift
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,6 @@ class Currencies {
static let ZAR: Currency = Currency(code: "ZAR", minorUnits: 2, factor: 100, name: "Rand")
static let ZMW: Currency = Currency(code: "ZMW", minorUnits: 2, factor: 100, name: "Zambian Kwacha")
static let ZWG: Currency = Currency(code: "ZWG", minorUnits: 2, factor: 100, name: "Zimbabwe Gold")
static let ZWL: Currency = Currency(code: "ZWL", minorUnits: 2, factor: 100, name: "Zimbabwe Dollar")


static let allCurrencies: [String: Currency] =
Expand Down Expand Up @@ -377,8 +376,7 @@ class Currencies {
"YER": YER,
"ZAR": ZAR,
"ZMW": ZMW,
"ZWG": ZWG,
"ZWL": ZWL
"ZWG": ZWG
]

/// Look up a currency struct containing currency and formatting information
Expand Down
4 changes: 1 addition & 3 deletions std_currency.js
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,5 @@ var stdCurrency = {
// ZMW currency object
ZMW: { code: "ZMW", name: "Zambian Kwacha", minorUnits: 2, factor: 100, name: "Zambian Kwacha"},
// ZWG currency object
ZWG: { code: "ZWG", name: "Zimbabwe Gold", minorUnits: 2, factor: 100, name: "Zimbabwe Gold"},
// ZWL currency object
ZWL: { code: "ZWL", name: "Zimbabwe Dollar", minorUnits: 2, factor: 100, name: "Zimbabwe Dollar"}
ZWG: { code: "ZWG", name: "Zimbabwe Gold", minorUnits: 2, factor: 100, name: "Zimbabwe Gold"}
};

0 comments on commit 7a8a944

Please sign in to comment.