diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-07-11 00:53:10 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-07-11 00:53:10 +0200 |
commit | 71e0d53bc3365f8db79097f3c6741acf58788532 (patch) | |
tree | d58f9c425103a5436f43453b04ec3227ebee62a0 | |
parent | 6bf2b9299d2f1bcc00b8a0f253aae8fd4fcb6baa (diff) | |
download | lombok-71e0d53bc3365f8db79097f3c6741acf58788532.tar.gz lombok-71e0d53bc3365f8db79097f3c6741acf58788532.tar.bz2 lombok-71e0d53bc3365f8db79097f3c6741acf58788532.zip |
Fixed an issue where the installer tool would erroneously complain about needing root access to install/uninstall lombok.
-rw-r--r-- | doc/changelog.markdown | 1 | ||||
-rw-r--r-- | src/installer/lombok/installer/eclipse/EclipseLocation.java | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index 774d28b2..097ff8ec 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -4,6 +4,7 @@ Lombok Changelog ### v0.11.3 (Edgy Guinea Pig) * BUGFIX: Eclipse would throw an OOME. [Issue #390](http://code.google.com/p/projectlombok/issues/detail?id=390) * BUGFIX: [Netbeans] `@Cleanup` and `@Synchronized` cause far fewer issues in the netbeans editor. [Issue #393](http://code.google.com/p/projectlombok/issues/detail?id=393) +* BUGFIX: [Installer] Erroneous messages about the installer complaining about needing root access when installing or removing lombok from eclipse installs has been fixed. ### v0.11.2 "Dashing Kakapo" (July 3rd, 2012) diff --git a/src/installer/lombok/installer/eclipse/EclipseLocation.java b/src/installer/lombok/installer/eclipse/EclipseLocation.java index bf44d1e8..e347cd98 100644 --- a/src/installer/lombok/installer/eclipse/EclipseLocation.java +++ b/src/installer/lombok/installer/eclipse/EclipseLocation.java @@ -175,8 +175,8 @@ public class EclipseLocation extends IdeLocation { } newContents.append(line).append(OS_NEWLINE); - br.close(); } + br.close(); } finally { fis.close(); } |