139. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 3/1/2018 12:13:18 PM Central 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.

139.1 Files compared

# Location File Last Modified
1 ehealth_xchange_cif.zip\NHIN_adapter\SpecProcessor\src\test\java\vler\exchange\va\gov\data\generation GetWords.java Thu Feb 22 14:22:02 2018 UTC
2 ehealth_xchange_cif.zip\NHIN_adapter\SpecProcessor\src\test\java\vler\exchange\va\gov\data\generation GetWords.java Thu Mar 1 14:42:29 2018 UTC

139.2 Comparison summary

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

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

139.4 Active regular expressions

No regular expressions were active.

139.5 Comparison detail

  1   package vl er.exchang e. DNS     .data.gene ration;
  2  
  3   import org .apache.co mmons.lang 3.StringUt ils;
  4  
  5   public cla ss GetWord s {
  6           pr ivate fina l String[]  words;
  7           pr ivate int  pos = 0;
  8  
  9           pu blic GetWo rds() {
  10                    this (
  11                                      "It is a  period of  civil war . Rebel sp aceships,  striking f rom a hidd en base, h ave won th eir first  victory ag ainst the  evil Galac tic Empire . During t he battle,  Rebel spi es managed  to steal  secret pla ns to the  Empire's u ltimate we apon, the  DEATH STAR , an armor ed space s tation wit h enough p ower to de stroy an e ntire plan et. Pursue d by the E mpire's si nister age nts, Princ ess Leia r aces home  aboard her  starship,  custodian  of the st olen plans  that can  save her p eople and  restore fr eedom to t he galaxy. ...");
  12           }
  13  
  14           pu blic GetWo rds(final  String val ue) {
  15                    if ( StringUtil s.isNotBla nk(value))  {
  16                             words  = value.sp lit(" ");
  17                    } el se {
  18                             words  = "Add som e words to  the GetWo rds in ord er to pars e correctl y.".split( " ");
  19                    }
  20           }
  21  
  22           pu blic Strin g next() {
  23                    if ( pos >= wor ds.length)  {
  24                             pos =  0;
  25                    }
  26                    retu rn words[p os++];
  27           }
  28   }