diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-01-30 15:49:36 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-01-30 15:49:36 +0100 |
commit | 26b2fb5cd6d4d73b270be3787fa876cc1bfe80f2 (patch) | |
tree | c3cccc68a0a4da222966fef26d096725b678b14a /src/core/lombok/eclipse/handlers | |
parent | a7bd812893ecb1fa603229d81c924823426ea973 (diff) | |
download | lombok-26b2fb5cd6d4d73b270be3787fa876cc1bfe80f2.tar.gz lombok-26b2fb5cd6d4d73b270be3787fa876cc1bfe80f2.tar.bz2 lombok-26b2fb5cd6d4d73b270be3787fa876cc1bfe80f2.zip |
* the j.u.List recipe is now used to singularize java.lang.Iterables.
* Code gen for builder now adheres to format options when delomboking (doesn’t generate java.lang. FQNs if you ask it not to do that).
Diffstat (limited to 'src/core/lombok/eclipse/handlers')
-rw-r--r-- | src/core/lombok/eclipse/handlers/singulars/EclipseJavaUtilListSingularizer.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lombok/eclipse/handlers/singulars/EclipseJavaUtilListSingularizer.java b/src/core/lombok/eclipse/handlers/singulars/EclipseJavaUtilListSingularizer.java index 0a9eaf75..576115b0 100644 --- a/src/core/lombok/eclipse/handlers/singulars/EclipseJavaUtilListSingularizer.java +++ b/src/core/lombok/eclipse/handlers/singulars/EclipseJavaUtilListSingularizer.java @@ -53,7 +53,7 @@ import org.mangosdk.spi.ProviderFor; @ProviderFor(EclipseSingularizer.class) public class EclipseJavaUtilListSingularizer extends EclipseJavaUtilListSetSingularizer { @Override public LombokImmutableList<String> getSupportedTypes() { - return LombokImmutableList.of("java.util.List", "java.util.Collection", "java.util.Iterable"); + return LombokImmutableList.of("java.util.List", "java.util.Collection", "java.lang.Iterable"); } @Override public void appendBuildCode(SingularData data, EclipseNode builderType, List<Statement> statements, char[] targetVariableName) { |