diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-11-06 00:54:05 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-11-06 00:55:54 +0100 |
commit | a685d0828c3cda044073054c203d17bcf6ab1096 (patch) | |
tree | c4ec88529de8341f4fa3948f0a57c41fb64e2162 /doc | |
parent | 7e79316a1f28d1eb1ef8569119b97a70387fd6c6 (diff) | |
download | lombok-a685d0828c3cda044073054c203d17bcf6ab1096.tar.gz lombok-a685d0828c3cda044073054c203d17bcf6ab1096.tar.bz2 lombok-a685d0828c3cda044073054c203d17bcf6ab1096.zip |
[fixes #1888] [jdk12] lombok can deal with the changes to case/break nodes in JDK12-preview javac.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/changelog.markdown | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index 4a19ed73..6b24ccc0 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -6,6 +6,7 @@ Lombok Changelog * FEATURE: The `@FieldNameConstants` feature now allows you to write the inner type by hand and add whatever you like to it; lombok will add the constants to this class. See the updated [FieldNameConstants feature](https://projectlombok.org/features/experimental/FieldNameConstants) page. * FEATURE: There is now a `lombok.config` key to configure `@ToString`'s call super behavior; it's just like `@EqualsAndHashCode` which has had it for a while now. [Issue #1918](https://github.com/rzwitserloot/lombok/issues/1918) * ENHANCEMENT: The toString generation of enums now contains the name of the enum constant. [Issue #1916](https://github.com/rzwitserloot/lombok/issues/1916) +* PLATFORM: Due to changes to switch statements in JDK12, lombok wasn't working with the JDK12 preview. [Issue #1888](https://github.com/rzwitserloot/lombok/issues/1888) ### v1.18.4 (October 30th, 2018) * PLATFORM: Support for Eclipse Photon. [Issue #1831](https://github.com/rzwitserloot/lombok/issues/1831) |