12. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 11/28/2017 4:44:48 PM Eastern Standard 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.

12.1 Files compared

# Location File Last Modified
1 admin_portal_reeng_2018.1.0.0.zip\admin portal reeng\mhv_source\mhv_admin\mhv-admin-main\src\main\java\gov\va\med\mhv\admin\registry ContactInformation.java Wed Aug 23 04:11:24 2017 UTC
2 admin_portal_reeng_2018.1.0.0.zip\admin portal reeng\mhv_source\mhv_admin\mhv-admin-main\src\main\java\gov\va\med\mhv\admin\registry ContactInformation.java Tue Nov 28 20:42:04 2017 UTC

12.2 Comparison summary

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

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

12.4 Active regular expressions

No regular expressions were active.

12.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.m hv.admin.r egistry;
  5  
  6   /**
  7    * @author  
P
I I
  8    *
  9    */
  10   public cla ss Contact Informatio n extends  ModelObjec t {
  11       
  12       privat e String h omePhone =  null;
  13       
  14       /**
  15        * @re turn Retur ns the hom ePhone.
  16        */
  17       public  String ge tHomePhone () {
  18           re turn homeP hone;
  19       }
  20  
  21       /**
  22        * @pa ram homePh one The ho mePhone to  set.
  23        */
  24       public  void setH omePhone(S tring home Phone) {
  25           th is.homePho ne = homeP hone;
  26       }
  27  
  28       @Overr ide
  29       public  int hashC ode() {
  30           Ob ject[] fie lds = { ho mePhone };
  31           re turn hashC ode(fields );
  32       }
  33       
  34       @Overr ide
  35       public  boolean e quals(Obje ct obj) {
  36           if  (this ==  obj) {
  37                return t rue;
  38           }
  39           if  (obj == n ull) {
  40                return f alse;
  41           }
  42           if  (getClass () != obj. getClass() ) {
  43                return f alse;
  44           }
  45           fi nal Contac tInformati on other =  (ContactI nformation ) obj;
  46           re turn areEq ual(homePh one, other .homePhone );
  47       }
  48   }