Skip to content

Commit

Permalink
fix apostrophe issue in reading the gacc_activity
Browse files Browse the repository at this point in the history
  • Loading branch information
thumit committed Oct 4, 2023
1 parent 2bdcb32 commit a4e6127
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions root/ISMR_Process.java
Original file line number Diff line number Diff line change
Expand Up @@ -376,8 +376,8 @@ private void process_area_data(String[] s_lines, int start_line, String current_
if (mstr.contains("uncontained large fires")) term.add("uncontained large fires");
if (mstr.contains("area command teams committed") || mstr.contains("area command")) term.add("area command teams committed"); // i.e. 20201021 uses Area Command
if (mstr.contains("nimos committed")) term.add("nimos committed");
if (mstr.contains("type 1 imts committed") || mstr.contains("type 1 imt committed") || mstr.contains("type 1 teams committed")) term.add("type 1 imts committed"); // i.e. 20180704 uses "type 1 teams committed"
if (mstr.contains("type 2 imts committed") || mstr.contains("type 2 imt committed") || mstr.contains("type 2 teams committed")) term.add("type 2 imts committed"); // i.e. 20180704 uses "type 2 teams committed"
if (mstr.contains("type 1 imts committed") || mstr.contains("type 1 imt committed") || mstr.contains("type 1 imt's committed") || mstr.contains("type 1 teams committed")) term.add("type 1 imts committed"); // i.e. 20180704 uses "type 1 teams committed"
if (mstr.contains("type 2 imts committed") || mstr.contains("type 2 imt committed") || mstr.contains("type 2 imt's committed") || mstr.contains("type 2 teams committed")) term.add("type 2 imts committed"); // i.e. 20180704 uses "type 2 teams committed"
if (mstr.contains("fire use teams committed") || mstr.contains("fire use teams")) term.add("fire use teams committed");
List<String> value = new ArrayList<String>();
String[] split_value = (mstr.replaceAll("type 1", "").replaceAll("type 2", "")).split(" "); // remove the number 1 and 2
Expand Down

0 comments on commit a4e6127

Please sign in to comment.