[jsword-svn] r2149 - trunk/jsword/src/main/java/org/crosswire/common/diff

dmsmith at crosswire.org dmsmith at crosswire.org
Sat Apr 9 08:51:45 MST 2011


Author: dmsmith
Date: 2011-04-09 08:51:45 -0700 (Sat, 09 Apr 2011)
New Revision: 2149

Modified:
   trunk/jsword/src/main/java/org/crosswire/common/diff/Bitap.java
   trunk/jsword/src/main/java/org/crosswire/common/diff/Commonality.java
   trunk/jsword/src/main/java/org/crosswire/common/diff/Diff.java
   trunk/jsword/src/main/java/org/crosswire/common/diff/DiffCleanup.java
   trunk/jsword/src/main/java/org/crosswire/common/diff/DifferenceEngine.java
   trunk/jsword/src/main/java/org/crosswire/common/diff/Match.java
   trunk/jsword/src/main/java/org/crosswire/common/diff/Patch.java
   trunk/jsword/src/main/java/org/crosswire/common/diff/PatchEntry.java
Log:
Fix javadoc formatting

Modified: trunk/jsword/src/main/java/org/crosswire/common/diff/Bitap.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/common/diff/Bitap.java	2011-04-07 20:43:24 UTC (rev 2148)
+++ trunk/jsword/src/main/java/org/crosswire/common/diff/Bitap.java	2011-04-09 15:51:45 UTC (rev 2149)
@@ -28,10 +28,8 @@
  * An implementation of the Bitap algorithm for finding a "fuzzy" location of a
  * match.
  * 
- * Based on the LGPL Diff_Match_Patch v1.5 javascript of Neil Fraser, Copyright
- * (C) 2006<br>
- * <a href="http://neil.fraser.name/software/diff_match_patch/">http://neil.
- * fraser.name/software/diff_match_patch/</a>
+ * Based on the LGPL Diff_Match_Patch v1.5 javascript of Neil Fraser, Copyright (C) 2006<br>
+ * <a href="http://neil.fraser.name/software/diff_match_patch/">http://neil.fraser.name/software/diff_match_patch/</a>
  * 
  * @see gnu.lgpl.License for license details.<br>
  *      The copyright to this program is held by it's authors.

Modified: trunk/jsword/src/main/java/org/crosswire/common/diff/Commonality.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/common/diff/Commonality.java	2011-04-07 20:43:24 UTC (rev 2148)
+++ trunk/jsword/src/main/java/org/crosswire/common/diff/Commonality.java	2011-04-09 15:51:45 UTC (rev 2149)
@@ -24,10 +24,8 @@
 /**
  * A Commonality is shared text at the beginning, middle or end of two strings.
  * 
- * Based on the LGPL Diff_Match_Patch v1.5 javascript of Neil Fraser, Copyright
- * (C) 2006<br>
- * <a href="http://neil.fraser.name/software/diff_match_patch/">http://neil.
- * fraser.name/software/diff_match_patch/</a>
+ * Based on the LGPL Diff_Match_Patch v1.5 javascript of Neil Fraser, Copyright (C) 2006<br>
+ * <a href="http://neil.fraser.name/software/diff_match_patch/">http://neil.fraser.name/software/diff_match_patch/</a>
  * 
  * @see gnu.lgpl.License for license details.<br>
  *      The copyright to this program is held by it's authors.

Modified: trunk/jsword/src/main/java/org/crosswire/common/diff/Diff.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/common/diff/Diff.java	2011-04-07 20:43:24 UTC (rev 2148)
+++ trunk/jsword/src/main/java/org/crosswire/common/diff/Diff.java	2011-04-09 15:51:45 UTC (rev 2149)
@@ -28,10 +28,8 @@
 /**
  * Computes the difference between two texts to create a list of differences.
  * 
- * Based on the LGPL Diff_Match_Patch v1.5 javascript of Neil Fraser, Copyright
- * (C) 2006<br>
- * <a href="http://neil.fraser.name/software/diff_match_patch/">http://neil.
- * fraser.name/software/diff_match_patch/</a>
+ * Based on the LGPL Diff_Match_Patch v1.5 javascript of Neil Fraser, Copyright (C) 2006<br>
+ * <a href="http://neil.fraser.name/software/diff_match_patch/">http://neil.fraser.name/software/diff_match_patch/</a>
  * 
  * @see gnu.lgpl.License for license details.<br>
  *      The copyright to this program is held by it's authors.

Modified: trunk/jsword/src/main/java/org/crosswire/common/diff/DiffCleanup.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/common/diff/DiffCleanup.java	2011-04-07 20:43:24 UTC (rev 2148)
+++ trunk/jsword/src/main/java/org/crosswire/common/diff/DiffCleanup.java	2011-04-09 15:51:45 UTC (rev 2149)
@@ -28,10 +28,8 @@
 /**
  * Various Strategies to cleanup a diff list.
  * 
- * Based on the LGPL Diff_Match_Patch v1.5 javascript of Neil Fraser, Copyright
- * (C) 2006<br>
- * <a href="http://neil.fraser.name/software/diff_match_patch/">http://neil.
- * fraser.name/software/diff_match_patch/</a>
+ * Based on the LGPL Diff_Match_Patch v1.5 javascript of Neil Fraser, Copyright (C) 2006<br>
+ * <a href="http://neil.fraser.name/software/diff_match_patch/">http://neil.fraser.name/software/diff_match_patch/</a>
  * 
  * @see gnu.lgpl.License for license details.<br>
  *      The copyright to this program is held by it's authors.

Modified: trunk/jsword/src/main/java/org/crosswire/common/diff/DifferenceEngine.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/common/diff/DifferenceEngine.java	2011-04-07 20:43:24 UTC (rev 2148)
+++ trunk/jsword/src/main/java/org/crosswire/common/diff/DifferenceEngine.java	2011-04-09 15:51:45 UTC (rev 2149)
@@ -32,10 +32,8 @@
  * Builds a map of a baseline/source text and a changed/target text, navigating
  * it to determine differences.
  * 
- * Based on the LGPL Diff_Match_Patch v1.5 javascript of Neil Fraser, Copyright
- * (C) 2006<br>
- * <a href="http://neil.fraser.name/software/diff_match_patch/">http://neil.
- * fraser.name/software/diff_match_patch/</a>
+ * Based on the LGPL Diff_Match_Patch v1.5 javascript of Neil Fraser, Copyright (C) 2006<br>
+ * <a href="http://neil.fraser.name/software/diff_match_patch/">http://neil.fraser.name/software/diff_match_patch/</a>
  * 
  * @see gnu.lgpl.License for license details.<br>
  *      The copyright to this program is held by it's authors.

Modified: trunk/jsword/src/main/java/org/crosswire/common/diff/Match.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/common/diff/Match.java	2011-04-07 20:43:24 UTC (rev 2148)
+++ trunk/jsword/src/main/java/org/crosswire/common/diff/Match.java	2011-04-09 15:51:45 UTC (rev 2149)
@@ -23,11 +23,11 @@
 
 /**
  * Computes the difference between two texts to create a patch. Applies the
- * patch onto another text, allowing for errors. Based on the LGPL
- * Diff_Match_Patch v1.5 javascript of Neil Fraser, Copyright (C) 2006<br>
- * <a href="http://neil.fraser.name/software/diff_match_patch/">http://neil.
- * fraser.name/software/diff_match_patch/</a>
+ * patch onto another text, allowing for errors.
  * 
+ * Based on the LGPL Diff_Match_Patch v1.5 javascript of Neil Fraser, Copyright (C) 2006<br>
+ * <a href="http://neil.fraser.name/software/diff_match_patch/">http://neil.fraser.name/software/diff_match_patch/</a>
+ * 
  * @see gnu.lgpl.License for license details.<br>
  *      The copyright to this program is held by it's authors.
  * @author DM Smith [dmsmith555 at yahoo dot com]

Modified: trunk/jsword/src/main/java/org/crosswire/common/diff/Patch.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/common/diff/Patch.java	2011-04-07 20:43:24 UTC (rev 2148)
+++ trunk/jsword/src/main/java/org/crosswire/common/diff/Patch.java	2011-04-09 15:51:45 UTC (rev 2149)
@@ -31,10 +31,8 @@
  * Marshals a patch to a list of Differences, Differences to a patch and applies
  * a list of differences to text to patch it.
  * 
- * Based on the LGPL Diff_Match_Patch v1.5 javascript of Neil Fraser, Copyright
- * (C) 2006<br>
- * <a href="http://neil.fraser.name/software/diff_match_patch/">http://neil.
- * fraser.name/software/diff_match_patch/</a>
+ * Based on the LGPL Diff_Match_Patch v1.5 javascript of Neil Fraser, Copyright (C) 2006<br>
+ * <a href="http://neil.fraser.name/software/diff_match_patch/">http://neil.fraser.name/software/diff_match_patch/</a>
  * 
  * @see gnu.lgpl.License for license details.<br>
  *      The copyright to this program is held by it's authors.

Modified: trunk/jsword/src/main/java/org/crosswire/common/diff/PatchEntry.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/common/diff/PatchEntry.java	2011-04-07 20:43:24 UTC (rev 2148)
+++ trunk/jsword/src/main/java/org/crosswire/common/diff/PatchEntry.java	2011-04-09 15:51:45 UTC (rev 2149)
@@ -32,10 +32,8 @@
  * over which differences are applied and the differences that should be
  * applied.
  * 
- * Based on the LGPL Diff_Match_Patch v1.5 javascript of Neil Fraser, Copyright
- * (C) 2006<br>
- * <a href="http://neil.fraser.name/software/diff_match_patch/">http://neil.
- * fraser.name/software/diff_match_patch/</a>
+ * Based on the LGPL Diff_Match_Patch v1.5 javascript of Neil Fraser, Copyright (C) 2006<br>
+ * <a href="http://neil.fraser.name/software/diff_match_patch/">http://neil.fraser.name/software/diff_match_patch/</a>
  * 
  * @see gnu.lgpl.License for license details.<br>
  *      The copyright to this program is held by it's authors.




More information about the jsword-svn mailing list