5. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/20/2017 7:20:06 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.

5.1 Files compared

# Location File Last Modified
1 CIF_MHV_2017.3.0.0_SW_Docx.zip\CIF_MHV_2017.3.0.0.zip\mhv_source\mhv_calendar\mhv-calendar-portal-api\src\main\java\gov\va\med\mhv\calendar\enums HourEnumeration.java Sat Jun 3 17:35:06 2017 UTC
2 CIF_MHV_2017.3.0.0_SW_Docx.zip\CIF_MHV_2017.3.0.0.zip\mhv_source\mhv_calendar\mhv-calendar-portal-api\src\main\java\gov\va\med\mhv\calendar\enums HourEnumeration.java Mon Jun 19 16:32:59 2017 UTC

5.2 Comparison summary

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

5.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

5.4 Active regular expressions

No regular expressions were active.

5.5 Comparison detail

  1   package go v.va.med.m hv.calenda r.enums;
  2  
  3   /**
  4    * @author   RED A C T ED
  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   }