Add info dialog when no updates available
authorCherian Mathew <c.mathew@bgbm.org>
Mon, 23 Nov 2015 14:38:56 +0000 (15:38 +0100)
committerCherian Mathew <c.mathew@bgbm.org>
Mon, 23 Nov 2015 14:38:56 +0000 (15:38 +0100)
eu.etaxonomy.taxeditor.application/src/main/java/eu/etaxonomy/taxeditor/update/UpdateHandler.java

index 6a110d40f98a4ef75b271173ea713d0d66aeef0c..43c6e15bb4537fbae370c9f5984a22d54669986a 100644 (file)
@@ -53,7 +53,7 @@ public class UpdateHandler extends PreloadingRepositoryHandler {
         IStatus status = checkForUpdates(operation);
 
         if (status.getCode() == UpdateOperation.STATUS_NOTHING_TO_UPDATE) {
-            MessagingUtils.info(status);
+            MessagingUtils.informationDialog("Checking for updates", status);
             return;
         }
 
@@ -86,7 +86,6 @@ public class UpdateHandler extends PreloadingRepositoryHandler {
                 }
             }
         }
-
     }