aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/BuilderSingularGuavaListsSetsWithSetterPrefix.java
diff options
context:
space:
mode:
authorCaleb Brinkman <cbrinkman@sonatype.com>2019-09-12 12:02:04 -0500
committerCaleb Brinkman <cbrinkman@sonatype.com>2019-09-12 12:02:04 -0500
commitf222050d13364565692cd585ff5d9a055498c52e (patch)
tree24b6bbc9747952c619a621e42c3f48c4c83c029f /test/transform/resource/before/BuilderSingularGuavaListsSetsWithSetterPrefix.java
parent5b16b48bbffdd579b26e2a7dc18684efdc32e219 (diff)
downloadlombok-f222050d13364565692cd585ff5d9a055498c52e.tar.gz
lombok-f222050d13364565692cd585ff5d9a055498c52e.tar.bz2
lombok-f222050d13364565692cd585ff5d9a055498c52e.zip
Fix class names in before
Diffstat (limited to 'test/transform/resource/before/BuilderSingularGuavaListsSetsWithSetterPrefix.java')
-rw-r--r--test/transform/resource/before/BuilderSingularGuavaListsSetsWithSetterPrefix.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/transform/resource/before/BuilderSingularGuavaListsSetsWithSetterPrefix.java b/test/transform/resource/before/BuilderSingularGuavaListsSetsWithSetterPrefix.java
index 678b2e9f..af02adb6 100644
--- a/test/transform/resource/before/BuilderSingularGuavaListsSetsWithSetterPrefix.java
+++ b/test/transform/resource/before/BuilderSingularGuavaListsSetsWithSetterPrefix.java
@@ -7,7 +7,7 @@ import com.google.common.collect.ImmutableTable;
import lombok.Singular;
@lombok.Builder(setterPrefix = "with")
-class BuilderSingularGuavaListsSets<T> {
+class BuilderSingularGuavaListsSetsWithSetterPrefix<T> {
@Singular private ImmutableList<T> cards;
@Singular private ImmutableCollection<? extends Number> frogs;
@SuppressWarnings("all") @Singular("rawSet") private ImmutableSet rawSet;