aboutsummaryrefslogtreecommitdiff
path: root/src/core/lombok/eclipse
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2015-01-30 15:49:36 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2015-01-30 15:49:36 +0100
commit26b2fb5cd6d4d73b270be3787fa876cc1bfe80f2 (patch)
treec3cccc68a0a4da222966fef26d096725b678b14a /src/core/lombok/eclipse
parenta7bd812893ecb1fa603229d81c924823426ea973 (diff)
downloadlombok-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')
-rw-r--r--src/core/lombok/eclipse/handlers/singulars/EclipseJavaUtilListSingularizer.java2
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) {