Skip to content

Commit 8dc868d

Browse files
committed
Merge pull request #3 from stokito/outdated_javadocs
outdated javadocs
2 parents 0894282 + 3aeddb4 commit 8dc868d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

conversion/src/main/java/org/javamoney/convert/ConversionProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public boolean isAvailable(CurrencyUnit base, CurrencyUnit term,
8484
long timestamp);
8585

8686
/**
87-
* Get an {@link ConversionRate} for a given timestamp (including historic
87+
* Get an {@link ExchangeRate} for a given timestamp (including historic
8888
* rates).
8989
* <p>
9090
* Note that the UTC timestamp models the instance, when the queried rate

conversion/src/main/java/org/javamoney/convert/ExchangeRate.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ private BigDecimal getBigDecimal(Number num) {
146146
* Creates a new instance with a custom chain of exchange rate type, e.g. or
147147
* creating <i>derived</i> rates.
148148
*
149-
* @param conversionType
149+
* @param exchangeRateType
150150
* The conversion type, never {@code null}.
151151
* @param base
152152
* the base {@link CurrencyUnit}
@@ -332,7 +332,7 @@ public String getProvider() {
332332
*
333333
* @return the chain of rates, in case of a derived rate, this may be
334334
* several instances. For a direct exchange rate, this equals to
335-
* <code>new ConversionRate[]{this}</code>.
335+
* <code>new ExchangeRate[]{this}</code>.
336336
*/
337337
public final List<ExchangeRate> getExchangeRateChain() {
338338
return Arrays.asList(this.chain);

0 commit comments

Comments
 (0)