Author: bayard
Date: Tue Sep 19 15:42:11 2006
New Revision: 448002
URL: http://svn.apache.org/viewvc?view=rev&rev=448002
Log:
Removing a few lines ending with whitespace. Very trivial commit
Modified:
jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/StringUtils.java
Modified:
jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/StringUtils.java
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/StringUtils.java?view=diff&rev=448002&r1=448001&r2=448002
==============================================================================
---
jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/StringUtils.java
(original)
+++
jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/StringUtils.java
Tue Sep 19 15:42:11 2006
@@ -1063,7 +1063,7 @@
return false;
}
return contains(str.toUpperCase(), searchStr.toUpperCase());
- }
+ }
// IndexOfAny chars
//-----------------------------------------------------------------------
@@ -4297,7 +4297,7 @@
}
return true;
}
-
+
/**
* <p>Checks if the String contains only unicode digits.
* A decimal point is not a unicode digit and returns false.</p>
@@ -4826,7 +4826,7 @@
for (i=1; i<=n; i++) {
cost = s.charAt(i-1)==t_j ? 0 : 1;
// minimum of cell to the left+1, to the top+1, diagonally
left and up +cost
- d[i] = Math.min(Math.min(d[i-1]+1, p[i]+1), p[i-1]+cost);
+ d[i] = Math.min(Math.min(d[i-1]+1, p[i]+1), p[i-1]+cost);
}
// copy current distance counts to 'previous row' distance counts
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]