diff options
author | Caleb Brinkman <cbrinkman@sonatype.com> | 2019-09-12 12:02:04 -0500 |
---|---|---|
committer | Caleb Brinkman <cbrinkman@sonatype.com> | 2019-09-12 12:02:04 -0500 |
commit | f222050d13364565692cd585ff5d9a055498c52e (patch) | |
tree | 24b6bbc9747952c619a621e42c3f48c4c83c029f /test/transform/resource/before/BuilderSingularGuavaMapsWithPrefix.java | |
parent | 5b16b48bbffdd579b26e2a7dc18684efdc32e219 (diff) | |
download | lombok-f222050d13364565692cd585ff5d9a055498c52e.tar.gz lombok-f222050d13364565692cd585ff5d9a055498c52e.tar.bz2 lombok-f222050d13364565692cd585ff5d9a055498c52e.zip |
Fix class names in before
Diffstat (limited to 'test/transform/resource/before/BuilderSingularGuavaMapsWithPrefix.java')
-rw-r--r-- | test/transform/resource/before/BuilderSingularGuavaMapsWithPrefix.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/transform/resource/before/BuilderSingularGuavaMapsWithPrefix.java b/test/transform/resource/before/BuilderSingularGuavaMapsWithPrefix.java index 89de9a9c..a2b48cb3 100644 --- a/test/transform/resource/before/BuilderSingularGuavaMapsWithPrefix.java +++ b/test/transform/resource/before/BuilderSingularGuavaMapsWithPrefix.java @@ -5,7 +5,7 @@ import com.google.common.collect.ImmutableSortedMap; import lombok.Singular; @lombok.Builder(setterPrefix = "with") -class BuilderSingularGuavaMaps<K, V> { +class BuilderSingularGuavaMapsWithSetterPrefix<K, V> { @Singular private ImmutableMap<K, V> battleaxes; @Singular private ImmutableSortedMap<Integer, ? extends V> vertices; @SuppressWarnings("all") @Singular("rawMap") private ImmutableBiMap rawMap; |