Skip to content

Commit 80df533

Browse files
authored
Merge pull request #109 from Daniel-Dos/small-adjust
small fix .
2 parents bee2791 + 20165fc commit 80df533

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

pom.xml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
<testng.version>6.8.5</testng.version>
2525
<mockito.version>1.10.19</mockito.version>
2626
<jacoco.version>0.8.2</jacoco.version>
27+
<findbugs.version>2.5.2</findbugs.version>
28+
<javadoc.version>3.0.1</javadoc.version>
2729
</properties>
2830

2931
<organization>
@@ -555,7 +557,7 @@
555557
<plugin>
556558
<groupId>org.apache.maven.plugins</groupId>
557559
<artifactId>maven-javadoc-plugin</artifactId>
558-
<version>3.0.1</version>
560+
<version>${javadoc.version}</version>
559561
<configuration>
560562
<excludes>java.money</excludes>
561563
<excludePackageNames>java.money</excludePackageNames>
@@ -879,7 +881,7 @@
879881
<plugin>
880882
<groupId>org.apache.maven.plugins</groupId>
881883
<artifactId>maven-javadoc-plugin</artifactId>
882-
<version>3.0.1</version>
884+
<version>${javadoc.version}</version>
883885
<inherited>true</inherited>
884886
<reportSets>
885887
<reportSet>
@@ -1021,7 +1023,7 @@
10211023
<plugin>
10221024
<groupId>org.codehaus.mojo</groupId>
10231025
<artifactId>findbugs-maven-plugin</artifactId>
1024-
<version>2.5.2</version>
1026+
<version>${findbugs.version}</version>
10251027
<configuration>
10261028
<xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation>
10271029
<xmlOutput>true</xmlOutput>
@@ -1042,7 +1044,7 @@
10421044
<plugin>
10431045
<groupId>org.codehaus.mojo</groupId>
10441046
<artifactId>findbugs-maven-plugin</artifactId>
1045-
<version>2.5.2</version>
1047+
<version>${findbugs.version}</version>
10461048
<configuration>
10471049
<xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation>
10481050
<xmlOutput>true</xmlOutput>

src/main/java/javax/money/Monetary.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ private static MonetaryRoundingsSingletonSpi monetaryRoundingsSingletonSpi() {
9797
}
9898

9999
/**
100-
* Required for deserialization only.
100+
* Private singletons constructor.
101101
*/
102102
private Monetary() {
103103
}

src/main/java/javax/money/MonetaryOperator.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,6 @@
6060
* thread-safe when invoked.
6161
* </p>
6262
*
63-
* <p>
64-
* This interface extends {@code java.util.function.UnaryOperator} introduced by Java 8.
65-
* </p>
66-
*
6763
* @author Werner Keil
6864
* @author Anatole Tresch
6965
*

0 commit comments

Comments
 (0)