From 1954c022a401cebdbb090d0b80c4f01d7bc76ec3 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Tue, 27 Mar 2012 00:46:26 +0200 Subject: Whoops, errors during release build. fixed it quickly! --- src/core/lombok/core/TransformationsUtil.java | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/core/lombok') diff --git a/src/core/lombok/core/TransformationsUtil.java b/src/core/lombok/core/TransformationsUtil.java index e94558f9..7426ae18 100644 --- a/src/core/lombok/core/TransformationsUtil.java +++ b/src/core/lombok/core/TransformationsUtil.java @@ -72,10 +72,6 @@ public class TransformationsUtil { return null; } - /** Matches any of the 8 primitive names, such as {@code boolean}. */ - public static final Pattern PRIMITIVE_TYPE_NAME_PATTERN = Pattern.compile( - "^(boolean|byte|short|int|long|float|double|char)$"); - /* NB: 'notnull' is not part of the pattern because there are lots of @NotNull annotations out there that are crappily named and actually mean something else, such as 'this field must not be null _when saved to the db_ but its perfectly okay to start out as such, and a no-args constructor and the implied starts-out-as-null state that goes with it is in fact mandatory' which happens with javax.validation.constraints.NotNull. -- cgit