aboutsummaryrefslogtreecommitdiff
path: root/doc/changelog.markdown
diff options
context:
space:
mode:
authorReinier Zwitserloot <r.zwitserloot@projectlombok.org>2019-03-26 01:36:40 +0100
committerReinier Zwitserloot <r.zwitserloot@projectlombok.org>2019-03-26 01:36:40 +0100
commitf6ad0ecde954a1ad6cd347b30dbec2c56e3fe3d3 (patch)
treea88f326a472c9d2b333e2d8c8aba77f2d44e7bbf /doc/changelog.markdown
parent320fbfee4dbf17b0e2c467311e0fd062448321c4 (diff)
downloadlombok-f6ad0ecde954a1ad6cd347b30dbec2c56e3fe3d3.tar.gz
lombok-f6ad0ecde954a1ad6cd347b30dbec2c56e3fe3d3.tar.bz2
lombok-f6ad0ecde954a1ad6cd347b30dbec2c56e3fe3d3.zip
[fixes #2050] [fixes #2061] javac would fail to skip generating build() method if it is already there
Diffstat (limited to 'doc/changelog.markdown')
-rw-r--r--doc/changelog.markdown1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 864f93db..64ddcc7f 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -7,6 +7,7 @@ Lombok Changelog
* BUGFIX: var/val on methods that return an intersection type would now work in Eclipse. [Issue #1986](https://github.com/rzwitserloot/lombok/issues/1986)
* BUGFIX: Fix for java6 regression if a field has javadoc. [Issue #2066](https://github.com/rzwitserloot/lombok/issues/2066)
* BUGFIX: Delombok now delomboks java10's own `var` as `var` and not as the actual underlying type. [Issue #2049](https://github.com/rzwitserloot/lombok/issues/2049)
+* BUGFIX: If you use `@Builder` and manually write the `build()` method in your builder class, javac would error out instead of deferring to your implementation. [Issue #2050](https://github.com/rzwitserloot/lombok/issues/2050) [Issue #2061](https://github.com/rzwitserloot/lombok/issues/2061)
* IMPROBABLE BREAKING CHANGE: For fields and parameters marked non-null, if the method body starts with an assert statement to ensure the value isn't null, no code to throw an exception will be generated.
### v1.18.6 (February 12th, 2019)