Skip to content

Commit c042f1a

Browse files
committed
Fixed version for release.
1 parent 612f3ca commit c042f1a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
<artifactId>moneta</artifactId>
2626
<packaging>jar</packaging>
27-
<version>0.9-SNAPSHOT</version>
27+
<version>0.9</version>
2828

2929
<name>Moneta (JSR 354 RI)</name>
3030
<url>http://javamoney.org</url>
@@ -188,12 +188,12 @@
188188
<distributionManagement>
189189
<repository>
190190
<id>sonatype-nexus-staging</id>
191-
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
191+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
192192
<name>Nexus Release Repository</name>
193193
</repository>
194194
<snapshotRepository>
195195
<id>sonatype-nexus-snapshots</id>
196-
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
196+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
197197
<name>Sonatype Nexus Snapshots</name>
198198
</snapshotRepository>
199199
</distributionManagement>

src/main/java/org/javamoney/moneta/function/MonetaryFunctions.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public static Predicate<MonetaryAmount> isCurrency(
121121
/**
122122
* Create predicate that filters by CurrencyUnit.
123123
*
124-
* @param currencyUnit the target {@link javax.money.CurrencyUnit}
124+
* @param currencies the target {@link javax.money.CurrencyUnit} instances to be filtered.
125125
* @return the predicate from CurrencyUnit
126126
*/
127127
public static Predicate<MonetaryAmount> fiterByExcludingCurrency(
@@ -136,7 +136,7 @@ public static Predicate<MonetaryAmount> fiterByExcludingCurrency(
136136
/**
137137
* Creates filter using isGreaterThan in MonetaryAmount.
138138
*
139-
* @param amount
139+
* @param amount the amount to be compared, not null.
140140
* @return the filter with isGreaterThan conditions
141141
*/
142142
public static Predicate<MonetaryAmount> isGreaterThan(MonetaryAmount amount){
@@ -146,7 +146,7 @@ public static Predicate<MonetaryAmount> isGreaterThan(MonetaryAmount amount){
146146
/**
147147
* Creates filter using isGreaterThanOrEqualTo in MonetaryAmount
148148
*
149-
* @param amount
149+
* @param amount the amount to be compared, not null.
150150
* @return the filter with isGreaterThanOrEqualTo conditions
151151
*/
152152
public static Predicate<MonetaryAmount> isGreaterThanOrEqualTo(MonetaryAmount amount){
@@ -156,7 +156,7 @@ public static Predicate<MonetaryAmount> isGreaterThanOrEqualTo(MonetaryAmount am
156156
/**
157157
* Creates filter using isLessThan in MonetaryAmount
158158
*
159-
* @param amount
159+
* @param amount the amount to be compared, not null.
160160
* @return the filter with isLessThan conditions
161161
*/
162162
public static Predicate<MonetaryAmount> isLessThan(MonetaryAmount amount){
@@ -166,7 +166,7 @@ public static Predicate<MonetaryAmount> isLessThan(MonetaryAmount amount){
166166
/**
167167
* Creates filter using isLessThanOrEqualTo in MonetaryAmount
168168
*
169-
* @param amount
169+
* @param amount the amount to be compared, not null.
170170
* @return the filter with isLessThanOrEqualTo conditions
171171
*/
172172
public static Predicate<MonetaryAmount> isLessThanOrEqualTo(MonetaryAmount amount){

0 commit comments

Comments
 (0)