Skip to content

Commit

Permalink
* config Build to OSS and GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
rikkimongoose committed Jun 6, 2021
1 parent 8b0be7c commit 076e0b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/github/pluralia4j/lang/Pluralisation.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ protected PluralType forDoubleAbs(double value) {
}

/**
* Default {@link PluralType} => wordform's index mapping
* Default {@link PluralType} => wordform's index mapping
*/
private final Map<PluralType, Integer> defaultMap = Maps.immutableEnumMap(ImmutableMap.<PluralType, Integer>builder()
.put(PluralType.ONE, INDEX_ONE)
.put(PluralType.MANY, INDEX_MANY)
.build());

/**
* Get {@link PluralType} => wordform's index Map
* Get {@link PluralType} =&gt; wordform's index Map
*
* @return <code>EnumMap&lt;PluralType, Integer&gt;</code> with mappings
*/
Expand Down

0 comments on commit 076e0b4

Please sign in to comment.