54. EPMO Open Source Coordination Office Redaction File Detail Report

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

54.1 Files compared

# Location File Last Modified
1 ehealth_xchange_cif.zip\NHIN_adapter\AdapterEJB\src\test\java\gov\va\med\nhin\adapter\mock\actions RunTaskAction.java Thu Feb 22 14:26:10 2018 UTC
2 ehealth_xchange_cif.zip\NHIN_adapter\AdapterEJB\src\test\java\gov\va\med\nhin\adapter\mock\actions RunTaskAction.java Tue Feb 27 14:25:00 2018 UTC

54.2 Comparison summary

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

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

54.4 Active regular expressions

No regular expressions were active.

54.5 Comparison detail

  1   /*
  2    * To chan ge this te mplate, ch oose Tools  | Templat es
  3    * and ope n the temp late in th e editor.
  4    */
  5   package go v.va.med.n hin.adapte r.mock.act ions;
  6  
  7   import org .hamcrest. Descriptio n;
  8   import org .jmock.api .Action;
  9   import org .jmock.api .Invocatio n;
  10  
  11   /**
  12    *
  13    * @author   DN S      VAZQUD
  14    */
  15   public cla ss RunTask Action imp lements Ac tion
  16   {
  17       static  public Ac tion runTa sk()
  18       {
  19           re turn new R unTaskActi on();
  20       }
  21       
  22       public  void desc ribeTo(Des cription d escription )
  23       {
  24           de scription. appendText ("runs tas k");
  25       }
  26  
  27       public  Object in voke(Invoc ation invo cation) th rows Throw able
  28       {
  29           (( Runnable)i nvocation. getParamet er(0)).run ();
  30           re turn null;
  31       }
  32   }