Issue #1842: Fix issue where start time of in progress VTEC events was being set
to 991130T0000Z. Former-commit-id:62d740b2ed
[formerly1fc7c3197a
] [formerlyd0568ff347
[formerly bf21f81dcad44880af5a3f988d15d4330b2b1d6b]] Former-commit-id:d0568ff347
Former-commit-id:4b9edbdcb4
This commit is contained in:
parent
d67aa10275
commit
988a705e81
1 changed files with 8 additions and 1 deletions
|
@ -41,6 +41,9 @@ import com.raytheon.viz.texteditor.util.VtecUtil;
|
|||
* Date Ticket# Engineer Description
|
||||
* ------------ ---------- ----------- --------------------------
|
||||
* May 14, 2013 #1842 dgilling Initial creation
|
||||
* Jul 19, 2013 #1842 dgilling Use VtecUtil.replaceFirstVtecString()
|
||||
* to ensure start times of in progress
|
||||
* events aren't set to the wrong time.
|
||||
*
|
||||
* </pre>
|
||||
*
|
||||
|
@ -94,7 +97,11 @@ public class GFEVtecUtil {
|
|||
vtec.getPhensig(), true);
|
||||
vtec.setSequence(newEtn);
|
||||
}
|
||||
vtecMatcher.appendReplacement(finalOutput, vtec.getVtecString());
|
||||
vtecMatcher
|
||||
.appendReplacement(
|
||||
finalOutput,
|
||||
VtecUtil.replaceFirstVtecString(
|
||||
vtec.getVtecString(), vtec));
|
||||
}
|
||||
vtecMatcher.appendTail(finalOutput);
|
||||
return finalOutput.toString();
|
||||
|
|
Loading…
Add table
Reference in a new issue