Issue #2879 Loading case no longer changes start/end time.
Former-commit-id:2f9c62bd0c
[formerly 60275732b2abcecf671a8338c8f87334baad3702] Former-commit-id:b78a05658d
This commit is contained in:
parent
8b24d06488
commit
16ade55cb6
1 changed files with 2 additions and 3 deletions
|
@ -51,6 +51,7 @@ import com.raytheon.uf.common.time.util.TimeUtil;
|
|||
* Aug 06, 2013 #2222 rferrel Changes to display all selected data.
|
||||
* Dec 11, 2013 #2603 rferrel Selected list changed to a Set.
|
||||
* Dec 11, 2013 #2624 rferrel Clear display variables when recomputing sizes.
|
||||
* Mar 27, 2014 #2879 rferrel Loading Case no longer changes Start/End times.
|
||||
*
|
||||
* </pre>
|
||||
*
|
||||
|
@ -300,7 +301,6 @@ public class SizeJob extends Job {
|
|||
selections = new SelectConfig();
|
||||
selections.setName(ArchiveConstants.defaultSelectName);
|
||||
}
|
||||
iRetentionHour.setRetentionTimes(selections.getStarRetentionHours());
|
||||
|
||||
for (String archiveName : getArchiveNames()) {
|
||||
ArchiveInfo archiveInfo = get(archiveName);
|
||||
|
@ -317,8 +317,7 @@ public class SizeJob extends Job {
|
|||
for (DisplayData displayData : categoryInfo
|
||||
.getDisplayDataList()) {
|
||||
String displayLabel = displayData.getDisplayLabel();
|
||||
boolean selected = selectionsSet
|
||||
.contains(displayLabel);
|
||||
boolean selected = selectionsSet.contains(displayLabel);
|
||||
if (selected != displayData.isSelected()) {
|
||||
setSelect(displayData, selected);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue