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>
<snapshotRepository>
<id>kreth.snapshots</id>
<id>nexus-snapshots</id>
<url>https://nexus.kreth-development.de/repository/maven-snapshots/</url>
</snapshotRepository>
<repository>
<id>kreth.releases</id>
<id>nexus-releases</id>
<url>https://nexus.kreth-development.de/repository/maven-releases/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>

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

Loading…
Cancel
Save