diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-08-05 00:25:05 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-08-05 00:25:05 +0200 |
commit | 78223dacd372de8da186c7bdc828ee71ca7c5934 (patch) | |
tree | 193d4b7014c0fb09e7248461171e9487c3081468 /src/lombok | |
parent | 68a69f214e3571120165cc09ab44157f327544ae (diff) | |
download | lombok-78223dacd372de8da186c7bdc828ee71ca7c5934.tar.gz lombok-78223dacd372de8da186c7bdc828ee71ca7c5934.tar.bz2 lombok-78223dacd372de8da186c7bdc828ee71ca7c5934.zip |
Added a note to restart eclipse, after some confusing as reported on the googlegroups.
Diffstat (limited to 'src/lombok')
-rw-r--r-- | src/lombok/installer/Installer.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lombok/installer/Installer.java b/src/lombok/installer/Installer.java index 6cf51355..89ebfc37 100644 --- a/src/lombok/installer/Installer.java +++ b/src/lombok/installer/Installer.java @@ -524,7 +524,7 @@ public class Installer { if ( success.get() ) SwingUtilities.invokeLater(new Runnable() { @Override public void run() { - JOptionPane.showMessageDialog(appWindow, "<html>Lombok has been installed on the selected Eclipse installations.<br>Don't forget to add <code>lombok.jar</code> to your projects!</html>", "Install successful", JOptionPane.INFORMATION_MESSAGE); + JOptionPane.showMessageDialog(appWindow, "<html>Lombok has been installed on the selected Eclipse installations.<br>Don't forget to add <code>lombok.jar</code> to your projects, and restart your eclipse!</html>", "Install successful", JOptionPane.INFORMATION_MESSAGE); appWindow.setVisible(false); System.exit(0); } |