16. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 9/11/2017 8:05:37 AM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

16.1 Files compared

# Location File Last Modified
1 MHV_CIF_2017.4.0.0.zip\MHV_CIF_2017.4.0.0\MHV_CIF_2017.4.0.0\mhv_source\mhv_calendar\mhv-calendar-portal-api\src\main\java\gov\va\med\mhv\calendar\enums HourEnumeration.java Tue May 2 23:46:08 2017 UTC
2 MHV_CIF_2017.4.0.0.zip\MHV_CIF_2017.4.0.0\MHV_CIF_2017.4.0.0\mhv_source\mhv_calendar\mhv-calendar-portal-api\src\main\java\gov\va\med\mhv\calendar\enums HourEnumeration.java Thu Sep 7 18:54:09 2017 UTC

16.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 104
Changed 1 2
Inserted 0 0
Removed 0 0

16.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

16.4 Active regular expressions

No regular expressions were active.

16.5 Comparison detail

  1   package go v.va.med.m hv.calenda r.enums;
  2  
  3   /**
  4    * @author   DN S      THUMMP
  5    *
  6    */
  7   public enu m HourEnum eration {
  8           
  9           ZE RO("00"),
  10           ON E("01"),
  11           TW O("02"),
  12           TH REE("03"),
  13           FO UR("04"),
  14           FI VE("05"),
  15           SI X("06"),
  16           SE VEN("07"),
  17           EI GHT("08"),
  18           NI NE("09"),
  19           TE N("10"),
  20           EL EVEN("11") ,
  21           TW ELVE("12") ,
  22           TH IRTEEN("13 "),
  23           FO URTEEN("14 "),
  24           FI FTEEN("15" ),
  25           SI XTEEN("16" ),
  26           SE VENTEEN("1 7"),
  27           EI GHTEEN("18 "),
  28           NI NETEEN("19 "),
  29           TW ENTY("20") ,
  30           TW ENTYONE("2 1"),
  31           TW ENTYTWO("2 2"),
  32           TW ENTYTHREE( "23");
  33           
  34           
  35           pr ivate Stri ng value;
  36           
  37           Ho urEnumerat ion( Strin g value) {
  38                    this .value = v alue;
  39           }
  40  
  41           pu blic Strin g getValue () {
  42                    retu rn value;
  43           }
  44  
  45           pu blic void  setValue(S tring valu e) {
  46                    this .value = v alue;
  47           }
  48           
  49  
  50           
  51  
  52           
  53   }