Skip to content

Commit 0a1a734

Browse files
committed
Merge branch 'master' of https://github.com/JavaMoney/jsr354-api
2 parents 17ef2e3 + 061b6cc commit 0a1a734

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

src/main/java/javax/money/spi/Bootstrap.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* AGREEMENT CAREFULLY. BY DOWNLOADING THIS SPECIFICATION, YOU ACCEPT THE TERMS AND CONDITIONS OF
55
* THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY IT, SELECT THE "DECLINE" BUTTON AT THE
66
* BOTTOM OF THIS PAGE. Specification: JSR-354 Money and Currency API ("Specification") Copyright
7-
* (c) 2012-2013, Credit Suisse All rights reserved.
7+
* (c) 2012-2015, Credit Suisse All rights reserved.
88
*/
99
package javax.money.spi;
1010

@@ -123,4 +123,4 @@ public static <T> T getService(Class<T> serviceType) {
123123
.orElse(null);
124124
}
125125

126-
}
126+
}

src/main/java/javax/money/spi/MonetaryConversionsSingletonSpi.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
/*
2-
* Copyright (c) 2012, 2013, Credit Suisse (Anatole Tresch), Werner Keil. Licensed under the Apache
3-
* License, Version 2.0 (the "License"); you may not use this file except in compliance with the
4-
* License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
5-
* Unless required by applicable law or agreed to in writing, software distributed under the License
6-
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
7-
* or implied. See the License for the specific language governing permissions and limitations under
8-
* the License.
2+
* CREDIT SUISSE IS WILLING TO LICENSE THIS SPECIFICATION TO YOU ONLY UPON THE CONDITION THAT YOU
3+
* ACCEPT ALL OF THE TERMS CONTAINED IN THIS AGREEMENT. PLEASE READ THE TERMS AND CONDITIONS OF THIS
4+
* AGREEMENT CAREFULLY. BY DOWNLOADING THIS SPECIFICATION, YOU ACCEPT THE TERMS AND CONDITIONS OF
5+
* THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY IT, SELECT THE "DECLINE" BUTTON AT THE
6+
* BOTTOM OF THIS PAGE. Specification: JSR-354 Money and Currency API ("Specification") Copyright
7+
* (c) 2012-2015, Credit Suisse All rights reserved.
98
*/
109
package javax.money.spi;
1110

@@ -37,6 +36,7 @@
3736
* not work.
3837
*
3938
* @author Anatole Tresch
39+
* @author Werner Keil
4040
*/
4141
public interface MonetaryConversionsSingletonSpi {
4242

@@ -176,7 +176,7 @@ default ExchangeRateProvider getExchangeRateProvider(String... providers) {
176176
*
177177
* @param conversionQuery the {@link javax.money.convert.ConversionQuery} determining the tpye of conversion
178178
* required, not null.
179-
* @return the correspöonding conversion, not null.
179+
* @return the corresponding conversion, not null.
180180
* @throws javax.money.MonetaryException if no matching conversion could be found.
181181
* @see #isConversionAvailable(javax.money.convert.ConversionQuery)
182182
*/
@@ -202,4 +202,4 @@ default CurrencyConversion getConversion(CurrencyUnit termCurrency, String... pr
202202
return getConversion(ConversionQueryBuilder.of().setTermCurrency(termCurrency).setProviderNames(providers).build());
203203
}
204204

205-
}
205+
}

0 commit comments

Comments
 (0)