Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-02-27 | Update changelog | Sander Koning | |
2012-02-27 | Consistent use of JavacResolution.typeToJCTree instead of TreeMaker.Types - ↵ | Sander Koning | |
fixes issue 341 where use of @Delegate with T-extends type parameters would prepend a dot to the fully qualified classname. | |||
2012-02-27 | Update credits page to reflect AUTHORS | Sander Koning | |
2012-02-27 | Alphabetize AUTHORS | Sander Koning | |
2012-02-27 | Fix note on @Getter wrt hasX fields: prefix is actually generated ↵ | Sander Koning | |
(conforming to beanspec) | |||
2012-02-23 | Make the unittests for ecj work on windows | Roel Spilker | |
2012-02-15 | Couple more tests for val | Reinier Zwitserloot | |
2012-02-15 | Updated changelog with the recent changes. | Reinier Zwitserloot | |
2012-02-15 | 'val' is no longer legal in basic for loops now. Fixes issue #346 | Reinier Zwitserloot | |
2012-02-14 | ecj tests and eclipse tests are now effectively doing the same thing, except ↵ | Reinier Zwitserloot | |
the ecj tests are written in a slightly more close-to-reality way, and do work for 'val'. eclipse test aspect removed. | |||
2012-02-14 | More test files, test files updated to be valid java, and ecj test now goes ↵ | Reinier Zwitserloot | |
through the complete compile process. This means val and @Delegate testing is now enabled. TODO: Update -eclipse tests. | |||
2012-02-14 | Update to error messages of @Log annotations. | Reinier Zwitserloot | |
2012-02-14 | Bumped copyright years on recently (in 2012) changed sources. | Reinier Zwitserloot | |
2012-02-14 | No more autobox/type coercion issues with @Getter(lazy=true) and primitive ↵ | Reinier Zwitserloot | |
types. (Issue #345). | |||
2012-02-14 | 'val' now works for member types whose outers have generics. (issue #343) | Reinier Zwitserloot | |
2012-02-13 | Smart ATHROW reducer removed because that can at least in theory go wrong, ↵ | Reinier Zwitserloot | |
and saving one byte isn't relevant, as far as I know. This is simpler, too :) | |||
2012-02-11 | whitespace only | Reinier Zwitserloot | |
2012-01-31 | Updated copyright notice in command line tool help, made debug tool=true ↵ | Reinier Zwitserloot | |
subapps not show up in the list of available commands. | |||
2012-01-31 | Merge branch 'master' into constantpool | Reinier Zwitserloot | |
2012-01-31 | Fix for publish target in build file. | Reinier Zwitserloot | |
2012-01-30 | Added a tool to display the constant pool for a list of class files | Roel Spilker | |
2012-01-30 | Made LombokApp an abstract class and added isDebugTool. | Roel Spilker | |
2012-01-30 | Merge branch 'master' of github.com:rzwitserloot/lombok | Roel Spilker | |
2012-01-24 | Updated changelog | Roel Spilker | |
2012-01-24 | Added test for @Getter(AccessLevel.NONE) | Roel Spilker | |
2012-01-24 | Fix for issue 328: @Delegate on a field for which we also generate a getter ↵ | Roel Spilker | |
will use the getter for delegation | |||
2012-01-23 | Added null-check to prevent errors in eclipse when working on incomplete files | Roel Spilker | |
2012-01-23 | Give the LombokizedEclipse a bit more permgen space | Roel Spilker | |
2012-01-23 | Fixed bug in reading long and double values | Roel Spilker | |
2012-01-23 | further fixes to the build script. I think it's good now.... | Reinier Zwitserloot | |
2012-01-23 | Okay, now the build should be truly fixed again... at least, if you're ↵ | Reinier Zwitserloot | |
running on a 1.6 VM. The test run now has more fine-grained dependency control, in preparation for running tests against multiple different platform versions (javac1.6, old eclipse, new eclipse, etc) | |||
2012-01-23 | Test script fixes | Roel Spilker | |
2012-01-23 | Post-release version bump to 0.10.9 | Roel Spilker | |
2012-01-19 | prerelease bump to 0.10.8 | Reinier Zwitserloot | |
2012-01-19 | Updated changelog to reflect issue 325 fixes. | Reinier Zwitserloot | |
2012-01-19 | Merge branch 'Issue_325' of https://github.com/jvanderhel/lombok into jappe | Reinier Zwitserloot | |
2012-01-19 | updated documentation to reflect ability of putting delegate on methods. | Reinier Zwitserloot | |
2012-01-19 | @Delegate is no longer legal on static entities (previously no immediate ↵ | Reinier Zwitserloot | |
errors but I don't think it would work right anyway), and prettied up the error message when you use @Delegate wrong (on static items or methods with args). Also put back something I accidentally deleted with the previous merge. | |||
2012-01-19 | Removed unused imports from PatchFixes | Reinier Zwitserloot | |
2012-01-19 | [Issue 275] Allow @Delegate on no-argument methods | peichhorn | |
2012-01-18 | 1) rollback of rollback fixRetrieveRightBraceOrSemiColonPosition | Jappe van der Hel | |
2) HandleEqualsAndHashCode now use SetGeneratedByVisitor to ensure "correct" sourcepositions 3) SetGeneratedByVisitor now sets QualifiedNameReference.sourcePositions | |||
2012-01-16 | Updated changelog. REGRESSION now marks actual regressions in this version. | Sander Koning | |
2012-01-16 | Issue 325: revert old behaviour of fixRetrieveRightBrace... | Sander Koning | |
2012-01-16 | Merge pull request #27 from jvanderhel/Issue_316_Rename_with_multiple_types_II | Sander Koning | |
Issue 316 rename with multiple types II | |||
2012-01-16 | Code review | Sander Koning | |
2012-01-10 | 1) We now honor the "public" and "abstract" modifier settings | Jappe van der Hel | |
2) Annotations are now handled, but @SuppressWarnings is skipped | |||
2012-01-10 | removeGeneratedMethods was broken, causing the rename to fail | Jappe van der Hel | |
2012-01-10 | "QualifiedName"'s are now also marked as generated during ASTConverter phase ↵ | Jappe van der Hel | |
(just like "SimpleName"'s) This fixes "Rename" when inner types are used (for both the main type and the inner type) | |||
2012-01-10 | Merge remote-tracking branch 'origin/master' | Roel Spilker | |
2012-01-09 | Updated to ASM4 final. | Reinier Zwitserloot | |