From a247fde6bd3c4fd57f8281de6578a554eb62a238 Mon Sep 17 00:00:00 2001 From: Markus Kreth Date: Sun, 11 Dec 2022 23:57:59 +0100 Subject: [PATCH] fixed javadoc and changed repository id. --- pom.xml | 5 ++--- .../java/de/kreth/property2java/processor/Format.java | 8 ++++---- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index e9641e9..1cf6652 100644 --- a/pom.xml +++ b/pom.xml @@ -120,16 +120,15 @@ - kreth.snapshots + nexus-snapshots https://nexus.kreth-development.de/repository/maven-snapshots/ - kreth.releases + nexus-releases https://nexus.kreth-development.de/repository/maven-releases/ - diff --git a/src/main/java/de/kreth/property2java/processor/Format.java b/src/main/java/de/kreth/property2java/processor/Format.java index 750b31c..659b579 100644 --- a/src/main/java/de/kreth/property2java/processor/Format.java +++ b/src/main/java/de/kreth/property2java/processor/Format.java @@ -5,8 +5,8 @@ import java.util.PropertyResourceBundle; public enum Format { /** - * Offers a getString(UnaryOperator 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 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 }