@@ -129,15 +129,14 @@ private static void processLinesInPrevChunk(List<String[]> rawChunk, Patch<Strin
129129
130130/**
131131 * generateUnifiedDiff takes a Patch and some other arguments, returning the Unified Diff format
132- * text representing the Patch.
132+ * text representing the Patch. Author: Bill James (tankerbay@gmail.com).
133133 *
134134 * @param originalFileName - Filename of the original (unrevised file)
135135 * @param revisedFileName - Filename of the revised file
136136 * @param originalLines - Lines of the original file
137137 * @param patch - Patch created by the diff() function
138138 * @param contextSize - number of lines of context output around each difference in the file.
139139 * @return List of strings representing the Unified Diff representation of the Patch argument.
140- * @author Bill James (tankerbay@gmail.com)
141140 */
142141public static List <String >generateUnifiedDiff (String originalFileName ,
143142String revisedFileName ,List <String >originalLines ,Patch <String >patch ,
@@ -200,13 +199,12 @@ public static List<String> generateUnifiedDiff(String originalFileName,
200199
201200/**
202201 * processDeltas takes a list of Deltas and outputs them together in a single block of
203- * Unified-Diff-format text.
202+ * Unified-Diff-format text. Author: Bill James (tankerbay@gmail.com).
204203 *
205204 * @param origLines - the lines of the original file
206205 * @param deltas - the Deltas to be output as a single block
207206 * @param contextSize - the number of lines of context to place around block
208207 * @return
209- * @author Bill James (tankerbay@gmail.com)
210208 */
211209private static List <String >processDeltas (List <String >origLines ,
212210List <AbstractDelta <String >>deltas ,int contextSize ,boolean newFile ) {
@@ -297,11 +295,10 @@ private static List<String> processDeltas(List<String> origLines,
297295 }
298296
299297/**
300- * getDeltaText returns the lines to be added to the Unified Diff text from the Delta parameter
298+ * getDeltaText returns the lines to be added to the Unified Diff text from the Delta parameter. Author: Bill James (tankerbay@gmail.com).
301299 *
302300 * @param delta - the Delta to output
303301 * @return list of String lines of code.
304- * @author Bill James (tankerbay@gmail.com)
305302 */
306303private static List <String >getDeltaText (AbstractDelta <String >delta ) {
307304List <String >buffer =new ArrayList <>();