diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-01-26 22:11:57 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-01-26 22:11:57 +0100 |
commit | 34835fa8b7ad24cf8bb80cda71594c9a1eb785de (patch) | |
tree | c004a8ba3aa0af9d11630cabdee5fe45e78b2399 /usage_examples/Singular-snippetExample_post.jpage | |
parent | 5c7493511dc3108c593617922cbc62285e4475f4 (diff) | |
download | lombok-34835fa8b7ad24cf8bb80cda71594c9a1eb785de.tar.gz lombok-34835fa8b7ad24cf8bb80cda71594c9a1eb785de.tar.bz2 lombok-34835fa8b7ad24cf8bb80cda71594c9a1eb785de.zip |
small updates to the documentation of @Singular.
Diffstat (limited to 'usage_examples/Singular-snippetExample_post.jpage')
-rw-r--r-- | usage_examples/Singular-snippetExample_post.jpage | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/usage_examples/Singular-snippetExample_post.jpage b/usage_examples/Singular-snippetExample_post.jpage index 689d97e8..4e2b0460 100644 --- a/usage_examples/Singular-snippetExample_post.jpage +++ b/usage_examples/Singular-snippetExample_post.jpage @@ -9,7 +9,7 @@ public class SingularExample<T extends Number> { private SortedMap<Integer, T> elves; private Collection<?> minutiae; - SingularExample(final Set<String> occupations, final ImmutableList<String> axes, final SortedMap<Integer, T> elves, final Collection<?> minutiae) { + SingularExample(Set<String> occupations, ImmutableList<String> axes, SortedMap<Integer, T> elves, Collection<?> minutiae) { this.occupations = occupations; this.axes = axes; this.elves = elves; @@ -26,7 +26,7 @@ public class SingularExample<T extends Number> { SingularExampleBuilder() { } - public SingularExampleBuilder<T> occupation(final String occupation) { + public SingularExampleBuilder<T> occupation(String occupation) { if (this.occupations == null) { this.occupations = new java.util.ArrayList<String>(); } @@ -36,7 +36,7 @@ public class SingularExample<T extends Number> { } @java.lang.SuppressWarnings("all") - public SingularExampleBuilder<T> occupations(final java.util.Collection<? extends String> occupations) { + public SingularExampleBuilder<T> occupations(java.util.Collection<? extends String> occupations) { if (this.occupations == null) { this.occupations = new java.util.ArrayList<String>(); } @@ -45,7 +45,7 @@ public class SingularExample<T extends Number> { return this; } - public SingularExampleBuilder<T> axis(final String axis) { + public SingularExampleBuilder<T> axis(String axis) { if (this.axes == null) { this.axes = com.google.common.collect.ImmutableList.builder(); } @@ -54,7 +54,7 @@ public class SingularExample<T extends Number> { return this; } - public SingularExampleBuilder<T> axes(final java.lang.Iterable<? extends String> axes) { + public SingularExampleBuilder<T> axes(java.lang.Iterable<? extends String> axes) { if (this.axes == null) { this.axes = com.google.common.collect.ImmutableList.builder(); } @@ -63,7 +63,7 @@ public class SingularExample<T extends Number> { return this; } - public SingularExampleBuilder<T> elf(final Integer elfKey, final T elfValue) { + public SingularExampleBuilder<T> elf(Integer elfKey, T elfValue) { if (this.elves$key == null) { this.elves$key = new java.util.ArrayList<Integer>(); this.elves$value = new java.util.ArrayList<T>(); @@ -74,20 +74,20 @@ public class SingularExample<T extends Number> { return this; } - public SingularExampleBuilder<T> elves(final java.util.Map<? extends Integer, ? extends T> elves) { + public SingularExampleBuilder<T> elves(java.util.Map<? extends Integer, ? extends T> elves) { if (this.elves$key == null) { this.elves$key = new java.util.ArrayList<Integer>(); this.elves$value = new java.util.ArrayList<T>(); } - for (final java.util.Map.Entry<? extends Integer, ? extends T> $lombokEntry : elves.entrySet()) { + for (java.util.Map.Entry<? extends Integer, ? extends T> $lombokEntry : elves.entrySet()) { this.elves$key.add($lombokEntry.getKey()); this.elves$value.add($lombokEntry.getValue()); } return this; } - public SingularExampleBuilder<T> minutia(final java.lang.Object minutia) { + public SingularExampleBuilder<T> minutia(java.lang.Object minutia) { if (this.minutiae == null) { this.minutiae = new java.util.ArrayList<java.lang.Object>(); } @@ -96,7 +96,7 @@ public class SingularExample<T extends Number> { return this; } - public SingularExampleBuilder<T> minutiae(final java.util.Collection<?> minutiae) { + public SingularExampleBuilder<T> minutiae(java.util.Collection<?> minutiae) { if (this.minutiae == null) { this.minutiae = new java.util.ArrayList<java.lang.Object>(); } |