aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/plugin/update/UpdateServiceImpl.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/java/sip/communicator/plugin/update/UpdateServiceImpl.java')
-rw-r--r--src/net/java/sip/communicator/plugin/update/UpdateServiceImpl.java32
1 files changed, 15 insertions, 17 deletions
diff --git a/src/net/java/sip/communicator/plugin/update/UpdateServiceImpl.java b/src/net/java/sip/communicator/plugin/update/UpdateServiceImpl.java
index 53dde17..d0c908e 100644
--- a/src/net/java/sip/communicator/plugin/update/UpdateServiceImpl.java
+++ b/src/net/java/sip/communicator/plugin/update/UpdateServiceImpl.java
@@ -545,24 +545,22 @@ public class UpdateServiceImpl
if(notifyAboutNewestVersion)
{
SwingUtilities.invokeLater(
- new Runnable()
+ new Runnable()
+ {
+ public void run()
{
- public void run()
- {
- UIService ui = UpdateActivator.getUIService();
- ResourceManagementService r
- = Resources.getResources();
-
- ui.getPopupDialog().showMessagePopupDialog(
- r.getI18NString(
- "plugin.updatechecker."
- + "DIALOG_NOUPDATE"),
- r.getI18NString(
- "plugin.updatechecker."
- + "DIALOG_NOUPDATE_TITLE"),
- PopupDialog.INFORMATION_MESSAGE);
- }
- });
+ UIService ui = UpdateActivator.getUIService();
+ ResourceManagementService r
+ = Resources.getResources();
+
+ ui.getPopupDialog().showMessagePopupDialog(
+ r.getI18NString(
+ "plugin.updatechecker.DIALOG_NOUPDATE"),
+ r.getI18NString(
+ "plugin.updatechecker.DIALOG_NOUPDATE_TITLE"),
+ PopupDialog.INFORMATION_MESSAGE);
+ }
+ });
}
}
else