ASM #85
Change-Id: I782bbebc746425446c523b6b4db026d81f85b2da Former-commit-id:e985e9d296
[formerlyfe1c94a422
] [formerlye3168d08cf
] [formerly55d8f64139
[formerlye3168d08cf
[formerly 4d7d62ed986a781fb225775d2446740453bd8c89]]] Former-commit-id:55d8f64139
Former-commit-id: cb6487e304bc618dab0b54eb5feeed9325acad49 [formerlyde69883b43
] Former-commit-id:d0109c690c
This commit is contained in:
parent
a91c29b99f
commit
a83805651f
1 changed files with 9 additions and 19 deletions
|
@ -80,6 +80,7 @@ import com.raytheon.viz.hydrocommon.util.HydroDialogStatus;
|
|||
* Jan 27, 2011 #5274 bkowal Using the swt job class to request data
|
||||
* asynchronously and display a progress
|
||||
* indicator on the main interface.
|
||||
* Feb 11, 2014 #15829 lbousaidi check for Missing before processing River Threat.
|
||||
* </pre>
|
||||
*
|
||||
* @author mpduff
|
||||
|
@ -390,6 +391,13 @@ public class PointDataControlManager extends Job {
|
|||
* missing data are only added if requested, since it takes a finite
|
||||
* time to determine which stations are missing.
|
||||
*/
|
||||
if (pcOptions.getSupressMissing() == 1) {
|
||||
repList = PointDataControlAddMissing.addMissingReports(repList);
|
||||
}
|
||||
|
||||
if (this.cancelJob) {
|
||||
return;
|
||||
}
|
||||
|
||||
/*
|
||||
* Check to determine if the user wants the displayed river icons to
|
||||
|
@ -406,24 +414,6 @@ public class PointDataControlManager extends Job {
|
|||
return;
|
||||
}
|
||||
|
||||
/*
|
||||
* if the user has requested that a missing report be shown for each
|
||||
* station being considered, then add them as necessary. the report
|
||||
* list is passed in AND returned to handle the case where the
|
||||
* report list may be empty, and therefore this function must assign
|
||||
* a new Head pointer.
|
||||
*
|
||||
* missing data are only added if requested, since it takes a finite
|
||||
* time to determine which stations are missing.
|
||||
*/
|
||||
if (pcOptions.getSupressMissing() == 1) {
|
||||
repList = PointDataControlAddMissing.addMissingReports(repList);
|
||||
}
|
||||
|
||||
if (this.cancelJob) {
|
||||
return;
|
||||
}
|
||||
|
||||
/*
|
||||
* Check the "Values" pulldown option menu. Process the options
|
||||
* according to the selected value which may be one of the
|
||||
|
@ -1256,4 +1246,4 @@ public class PointDataControlManager extends Job {
|
|||
this.cancel();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue