From 235208946ceb2bf0f422956a3ebc0ebb88ba28b6 Mon Sep 17 00:00:00 2001 From: "Benjamin J. Culkin" Date: Wed, 11 Oct 2017 21:34:29 -0300 Subject: Cleanup --- src/main/java/bjc/inflexion/nouns/InflectionAffixes.java | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'src/main/java/bjc/inflexion/nouns/InflectionAffixes.java') diff --git a/src/main/java/bjc/inflexion/nouns/InflectionAffixes.java b/src/main/java/bjc/inflexion/nouns/InflectionAffixes.java index 4b1d2cf..facf9d0 100644 --- a/src/main/java/bjc/inflexion/nouns/InflectionAffixes.java +++ b/src/main/java/bjc/inflexion/nouns/InflectionAffixes.java @@ -21,7 +21,6 @@ import java.util.regex.Pattern; * Utility methods for constructing inflection affixes. * * @author EVE - * */ public class InflectionAffixes { /* @@ -48,9 +47,10 @@ public class InflectionAffixes { * Create an affix that's a word by itself. * * @param suffix - * The suffix to use. + * The suffix to use. * - * @return A affix that represents the suffix. + * @return + * A affix that represents the suffix. */ public static InflectionAffix complete(final String suffix) { final Pattern patt = Pattern.compile(String.format(COMPLETE_PATT_FMT, suffix)); @@ -62,9 +62,10 @@ public class InflectionAffixes { * Create an affix that's not a word by itself. * * @param suffix - * The suffix to use. + * The suffix to use. * - * @return An affix that represents the suffix. + * @return + * An affix that represents the suffix. */ public static InflectionAffix incomplete(final String suffix) { final Pattern patt = Pattern.compile(String.format(INCOMPLETE_PATT_FMT, suffix)); -- cgit v1.2.3