Merge "Issue #2205 Fix cancelling adhoc queries" into omaha_13.5.1
Former-commit-id:a3b77f2623
[formerly d60e75576a5f80f8838330789c97e89788c7a057] Former-commit-id:d5ea12d97f
This commit is contained in:
commit
3947baa02d
1 changed files with 4 additions and 0 deletions
|
@ -99,6 +99,7 @@ import com.raytheon.uf.viz.datadelivery.utils.DataDeliveryUtils;
|
|||
* May 21, 2013 2020 mpduff Rename UserSubscription to SiteSubscription.
|
||||
* Jun 04, 2013 223 mpduff Added grid specific items to this class.
|
||||
* Jun 11, 2013 2064 mpduff Fix editing of subscriptions.
|
||||
* Jul 18, 2013 2205 djohnson If null time is selected from the dialog, return null for the adhoc.
|
||||
*
|
||||
*
|
||||
* </pre>
|
||||
|
@ -607,6 +608,9 @@ public class GriddedSubsetManagerDlg
|
|||
|
||||
if (sub instanceof AdhocSubscription) {
|
||||
newTime = setupDataSpecificTime(newTime, sub);
|
||||
if (newTime == null) {
|
||||
return null;
|
||||
}
|
||||
sub.setTime(newTime);
|
||||
} else if (!create) {
|
||||
Time time = sub.getTime();
|
||||
|
|
Loading…
Add table
Reference in a new issue