aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2010-07-30 08:36:12 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2010-07-30 08:36:12 +0200
commitfd8e08cb784db38d527c684681a88fc59931f713 (patch)
tree6b5f7ee3e7ef6629d812c92589e4ccd7970b9b20
parent735b2cf1029baa985c61ecbc5aba0b081575aa70 (diff)
downloadlombok-fd8e08cb784db38d527c684681a88fc59931f713.tar.gz
lombok-fd8e08cb784db38d527c684681a88fc59931f713.tar.bz2
lombok-fd8e08cb784db38d527c684681a88fc59931f713.zip
typofixed the link to issue 133 in the changelog.
-rw-r--r--doc/changelog.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index d3e9e638..7c5ff02b 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -12,7 +12,7 @@ Lombok Changelog
* ENHANCEMENT: FindBugs' `@CheckForNull` is now copied from a field to a setter's parameter and the getter method just like `@Nullable`. [Issue #128](http://code.google.com/p/projectlombok/issues/detail?id=128)
* ENHANCEMENT: plugins and `@SneakyThrows`: Resolving types in annotations now works better especially for classes that aren't in the core java libraries. [Issue #88](http://code.google.com/p/projectlombok/issues/detail?id=88)
* ENHANCEMENT: If `tools.jar` isn't found (required when running _delombok_), now a useful error message is generated. The search for `tools.jar` now also looks in `JAVA_HOME`.
-* ENHANCEMENT: toString() on inner classes now lists the class name as `Outer.Inner` instead of just `Inner`. Addresses issue #133(http://code.google.com/p/projectlombok/issues/detail?id=133)
+* ENHANCEMENT: toString() on inner classes now lists the class name as `Outer.Inner` instead of just `Inner`. [Issue #133](http://code.google.com/p/projectlombok/issues/detail?id=133)
* ENHANCEMENT: All field accesses generated by lombok are now qualified (like so: `this.fieldName`). For those who have a warning configured for unqualified field access, those should no longer occur. [Issue #48](http://code.google.com/p/projectlombok/issues/detail?id=48)
* ENHANCEMENT: All fields and methods generated by lombok now get `@SuppressWarnings("all")` attached to avoid such warnings as missing javadoc, for those of you who have that warning enabled. [Issue #47](http://code.google.com/p/projectlombok/issues/detail?id=47)
* PLATFORMS: Lombok should now run in stand-alone ecj (Eclipse Compiler for Java). This isn't just useful for the few souls actually using this compiler day to day, but various eclipse build tools such as the RCP builder run ecj internally as well. [Issue #72](http://code.google.com/p/projectlombok/issues/detail?id=72)