diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-21 05:28:46 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-21 05:28:46 +0200 |
commit | fe3343694ad3c8d75f7ef7551bb84921d95a1089 (patch) | |
tree | 9ff295bd211aedbb9af0151a397384200b853f8a /src/lombok | |
parent | 3b5ce00dd090827228d251dfe5786ac228314941 (diff) | |
download | lombok-fe3343694ad3c8d75f7ef7551bb84921d95a1089.tar.gz lombok-fe3343694ad3c8d75f7ef7551bb84921d95a1089.tar.bz2 lombok-fe3343694ad3c8d75f7ef7551bb84921d95a1089.zip |
Added an extra note in the 'installation successful' dialog to add lombok.jar to your eclipse projects, lets people get confused and think it can work without doing that.
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 6f8a4c32..6cf51355 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, "Lombok has been installed on the selected Eclipse installations.", "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!</html>", "Install successful", JOptionPane.INFORMATION_MESSAGE); appWindow.setVisible(false); System.exit(0); } |