From fe3343694ad3c8d75f7ef7551bb84921d95a1089 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Tue, 21 Jul 2009 05:28:46 +0200 Subject: 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. --- src/lombok/installer/Installer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, "Lombok has been installed on the selected Eclipse installations.
Don't forget to add lombok.jar to your projects!", "Install successful", JOptionPane.INFORMATION_MESSAGE); appWindow.setVisible(false); System.exit(0); } -- cgit