fixed javadoc and changed repository id.

pull/11/head
Markus Kreth 3 years ago
parent 3a9fd82ecd
commit a247fde6bd
  1. 5
      pom.xml
  2. 8
      src/main/java/de/kreth/property2java/processor/Format.java

@ -120,16 +120,15 @@
<distributionManagement> <distributionManagement>
<snapshotRepository> <snapshotRepository>
<id>kreth.snapshots</id> <id>nexus-snapshots</id>
<url>https://nexus.kreth-development.de/repository/maven-snapshots/</url> <url>https://nexus.kreth-development.de/repository/maven-snapshots/</url>
</snapshotRepository> </snapshotRepository>
<repository> <repository>
<id>kreth.releases</id> <id>nexus-releases</id>
<url>https://nexus.kreth-development.de/repository/maven-releases/</url> <url>https://nexus.kreth-development.de/repository/maven-releases/</url>
</repository> </repository>
</distributionManagement> </distributionManagement>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

@ -5,8 +5,8 @@ import java.util.PropertyResourceBundle;
public enum Format { public enum Format {
/** /**
* Offers a getString(UnaryOperator<String> resourceFunction) method to access * Offers a getString(UnaryOperator resourceFunction) method to access the
* the String value * String value
*/ */
WithUnaryOperatorParameter, WithUnaryOperatorParameter,
/** /**
@ -20,8 +20,8 @@ public enum Format {
*/ */
WithInnerPropertyLoader, WithInnerPropertyLoader,
/** /**
* Offers a static init(UnaryOperator<String> resourceFunction) method to offer * Offers a static init(UnaryOperator resourceFunction) method to offer a
* a getText() method. The init method must be called before any getText() call. * getText() method. The init method must be called before any getText() call.
*/ */
WithInitializer WithInitializer
} }

Loading…
Cancel
Save