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

15.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 PlaceOfBirth.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 PlaceOfBirth.java Tue Nov 28 20:42:59 2017 UTC

15.2 Comparison summary

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

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

15.4 Active regular expressions

No regular expressions were active.

15.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 PlaceOf Birth exte nds ModelO bject {
  11       
  12       privat e String c ity = null ;
  13       privat e String s tate = nul l;
  14       
  15       /**
  16        * @re turn Retur ns the cit y.
  17        */
  18       public  String ge tCity() {
  19           re turn city;
  20       }
  21  
  22       /**
  23        * @pa ram city T he city to  set.
  24        */
  25       public  void setC ity(String  city) {
  26           th is.city =  city;
  27       }
  28  
  29       /**
  30        * @re turn Retur ns the sta te.
  31        */
  32       public  String ge tState() {
  33           re turn state ;
  34       }
  35  
  36       /**
  37        * @pa ram state  The state  to set.
  38        */
  39       public  void setS tate(Strin g state) {
  40           th is.state =  state;
  41       }
  42  
  43       @Overr ide
  44       public  int hashC ode() {
  45           Ob ject[] fie lds = { ci ty, state  };
  46           re turn hashC ode(fields );
  47       }
  48       
  49       @Overr ide
  50       public  boolean e quals(Obje ct obj) {
  51           if  (this ==  obj) {
  52                return t rue;
  53           }
  54           if  (obj == n ull) {
  55                return f alse;
  56           }
  57           if  (getClass () != obj. getClass() ) {
  58                return f alse;
  59           }
  60           fi nal PlaceO fBirth oth er = (Plac eOfBirth)  obj;
  61           re turn areEq ual(city,  other.city )
  62                && areEq ual(state,  other.sta te);
  63       }
  64   }