From 38ce38fe69b1317892695012cd7bbec5892c39c8 Mon Sep 17 00:00:00 2001 From: Tim Jensen Date: Thu, 18 Feb 2016 13:55:21 -0600 Subject: [PATCH] Omaha #5281: Fix issue when JMS not available Change-Id: I1fa917ed48f09cf7af46a2b5e5cac6569d59137b Former-commit-id: 82439e2a62a42ecbbc63bd4b29882d327aa3c019 --- .../uf/viz/thinclient/ui/ThinClientConnectivityDialog.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cave/com.raytheon.uf.viz.thinclient/src/com/raytheon/uf/viz/thinclient/ui/ThinClientConnectivityDialog.java b/cave/com.raytheon.uf.viz.thinclient/src/com/raytheon/uf/viz/thinclient/ui/ThinClientConnectivityDialog.java index caf392f6e5..37ebab78b8 100644 --- a/cave/com.raytheon.uf.viz.thinclient/src/com/raytheon/uf/viz/thinclient/ui/ThinClientConnectivityDialog.java +++ b/cave/com.raytheon.uf.viz.thinclient/src/com/raytheon/uf/viz/thinclient/ui/ThinClientConnectivityDialog.java @@ -70,6 +70,7 @@ import com.raytheon.uf.viz.thinclient.preferences.ThinClientPreferenceConstants; * Oct 08, 2015 4891 njensen Added tooltip to useProxyCheck * Feb 08, 2016 5281 tjensen Reworked interface to simply options * Feb 15, 2016 5281 tjensen Added check for null in validate method + * Feb 18, 2016 5281 tjensen Fix issue when no JMS available. * * * @@ -396,6 +397,8 @@ public class ThinClientConnectivityDialog extends ConnectivityPreferenceDialog { timedPollBtn.setSelection(true); dataRefreshGroup.setToolTipText(dataRefreshTooltip + unableConnectJMS); + // Since JMS is now disabled, we're in a good state. + jmsGood = true; } } }