diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-03-27 00:46:26 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-03-27 00:46:26 +0200 |
commit | 1954c022a401cebdbb090d0b80c4f01d7bc76ec3 (patch) | |
tree | f4e524d5d987aa5b79bf44c315d001d2ffbcd0b4 /src/core | |
parent | 48fbf86d5a27bcbafff03046097eb33a927bf6da (diff) | |
download | lombok-1954c022a401cebdbb090d0b80c4f01d7bc76ec3.tar.gz lombok-1954c022a401cebdbb090d0b80c4f01d7bc76ec3.tar.bz2 lombok-1954c022a401cebdbb090d0b80c4f01d7bc76ec3.zip |
Whoops, errors during release build. fixed it quickly!
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/lombok/core/TransformationsUtil.java | 4 |
1 files changed, 0 insertions, 4 deletions
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. |