Author: awhite
Date: Wed Nov  8 12:05:28 2006
New Revision: 472617

URL: http://svn.apache.org/viewvc?view=rev&rev=472617
Log:
Fix line over 80 chars.


Modified:
    
incubator/openjpa/trunk/openjpa-lib/src/main/java/org/apache/openjpa/lib/util/Bytes.java

Modified: 
incubator/openjpa/trunk/openjpa-lib/src/main/java/org/apache/openjpa/lib/util/Bytes.java
URL: 
http://svn.apache.org/viewvc/incubator/openjpa/trunk/openjpa-lib/src/main/java/org/apache/openjpa/lib/util/Bytes.java?view=diff&rev=472617&r1=472616&r2=472617
==============================================================================
--- 
incubator/openjpa/trunk/openjpa-lib/src/main/java/org/apache/openjpa/lib/util/Bytes.java
 (original)
+++ 
incubator/openjpa/trunk/openjpa-lib/src/main/java/org/apache/openjpa/lib/util/Bytes.java
 Wed Nov  8 12:05:28 2006
@@ -21,7 +21,6 @@
  *
  * <p>Static methods for managing byte arrays (all methods follow Big
  * Endian order where most significant bits are in front).</p>
- *
  */
 public final class Bytes {
 
@@ -126,8 +125,9 @@
      *
      * @param lhs - left hand value in the comparison operation.
      * @param rhs - right hand value in the comparison operation.
-     * @return  a negative integer, zero, or a positive integer as 
<code>lhs</code>
-     *  is less than, equal to, or greater than <code>rhs</code>.
+     * @return  a negative integer, zero, or a positive integer as 
+     * <code>lhs</code> is less than, equal to, or greater than 
+     * <code>rhs</code>.
      */
     public static int compareTo(byte[] lhs, byte[] rhs) {
         if (lhs == rhs) {


Reply via email to