Fix line over 80 chars.

git-svn-id: https://svn.apache.org/repos/asf/incubator/openjpa/trunk@472617 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
A. Abram White 2006-11-08 20:05:28 +00:00
parent 286c870c34
commit 42e0745224
1 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,6 @@ package org.apache.openjpa.lib.util;
*
* <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 @@ public final class Bytes {
*
* @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) {