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

13.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_user\mhv-usermgmt-portal-api\src\main\java\gov\va\med\mhv\usermgmt\common\enums MonthEnumeration.java Sat Jun 3 17:35:22 2017 UTC
2 CIF_MHV_2017.3.0.0_SW_Docx.zip\CIF_MHV_2017.3.0.0.zip\mhv_source\mhv_user\mhv-usermgmt-portal-api\src\main\java\gov\va\med\mhv\usermgmt\common\enums MonthEnumeration.java Mon Jun 19 18:17:34 2017 UTC

13.2 Comparison summary

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

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

13.4 Active regular expressions

No regular expressions were active.

13.5 Comparison detail

  1   package go v.va.med.m hv.usermgm t.common.e nums;
  2  
  3   /**
  4    * @author   RED A C T ED
  5    *
  6    */
  7   public enu m MonthEnu meration {
  8           JA N("Jan", 1 ),
  9           FE B("Feb", 2 ),
  10           MA R("Mar", 3 ),
  11           AP R("Apr", 4 ),
  12           MA Y("May", 5 ),
  13           JU N("Jun", 6 ),
  14           JU L("Jul", 7 ),
  15           AU G("Aug", 8 ),
  16           SE P("Sep", 9 ),
  17           OC T("Oct", 1 0),
  18           NO V("Nov", 1 1),
  19           DE C("Dec", 1 2);
  20           
  21           pr ivate Stri ng descrip tion;
  22           pr ivate int  value;
  23  
  24           pu blic Strin g getDescr iption() {
  25                    retu rn descrip tion;
  26           }
  27  
  28           pu blic void  setDescrip tion(Strin g descript ion) {
  29                    this .descripti on = descr iption;
  30           }
  31  
  32           pu blic int g etValue()  {
  33                    retu rn value;
  34           }
  35  
  36           pu blic void  setValue(i nt value)  {
  37                    this .value = v alue;
  38           }
  39  
  40           Mo nthEnumera tion(Strin g desc, in t val) {
  41                    desc ription =  desc;
  42                    valu e = val;
  43           }
  44   }