diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-01 20:16:26 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-01 20:16:26 +0200 |
commit | efe3931cf3d9134d7d8e5adf792b05a47ce2c423 (patch) | |
tree | 8ed8d2aa39ec902bf5601487d86ec7333cc06267 /doc/TODO.txt | |
parent | 194c990f64165e0422b1f48a62cf1f77ccd52e43 (diff) | |
download | lombok-efe3931cf3d9134d7d8e5adf792b05a47ce2c423.tar.gz lombok-efe3931cf3d9134d7d8e5adf792b05a47ce2c423.tar.bz2 lombok-efe3931cf3d9134d7d8e5adf792b05a47ce2c423.zip |
Added ability to @Synchronized to explicitly name the lock object.
Spruced up @Cleanup's position settings and also forced initialization, because the error appears in a screwed up place if you don't, and we can't seem to move it.
Diffstat (limited to 'doc/TODO.txt')
-rw-r--r-- | doc/TODO.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/TODO.txt b/doc/TODO.txt index 944ef5c6..2bc8f14d 100644 --- a/doc/TODO.txt +++ b/doc/TODO.txt @@ -1,5 +1,7 @@ ## Fix Eclipse's HandleCleanup +Consider requiring an initializer and warn when the varname gets reassigned, if the declaration wasn't already final. Think about this more. + Right now exceptions thrown by the cleanup method will mask any exceptions thrown in the main body, which is not wanted. This does not appear to be doable without java 7 features or very extensive additions to the lombok framework. A lot has been tried: |