49. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 2/7/2017 12:14:07 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.

49.1 Files compared

# Location File Last Modified
1 cpss.zip\cpss\src\main\java\gov\va\cpss\job CbssSftpReadLineItemReader.java Wed Feb 1 21:07:26 2017 UTC
2 cpss.zip\cpss\src\main\java\gov\va\cpss\job CbssSftpReadLineItemReader.java Fri Feb 3 20:54:12 2017 UTC

49.2 Comparison summary

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

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

49.4 Active regular expressions

No regular expressions were active.

49.5 Comparison detail

  1   package go v.va.cpss. job;
  2  
  3   import jav a.io.Input Stream;
  4   import jav a.io.Unsup portedEnco dingExcept ion;
  5   import jav a.util.con current.Bl ockingQueu e;
  6  
  7   /**
  8    * Impleme ntation of  CbssSftpI temReader  used by a  batch job  to read da ta over an
  9    * sftp fi le stream  and proces s that dat a per line  record.
  10    * 
  11    * @author   D N   
  12    */
  13   public cla ss CbssSft pReadLineI temReader< T> extends  CbssSftpI temReader< T> {
  14  
  15           @O verride
  16           pr otected Cb ssStreamTo QueueThrea d getQueue BuilderThr ead(long e xpectedByt eCount, In putStream  in,
  17                             Blocki ngQueue<St ring> outp utQueue) {
  18                    try  {
  19                             return  new CbssS treamToQue ueThreadRe adLineImpl (expectedB yteCount,  in, output Queue);
  20                    } ca tch (Unsup portedEnco dingExcept ion e) {
  21                             reader Logger.err or("Error  creating d ata stream  processin g thread:  " + e.getM essage());
  22                    }
  23                    retu rn null;
  24           }
  25  
  26   }