Removing commented out private method
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@965937 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
22da373ea4
commit
05fbbf646d
|
@ -6076,27 +6076,6 @@ public class StringUtils {
|
|||
return p[n];
|
||||
}
|
||||
|
||||
/**
|
||||
* <p>Gets the minimum of three <code>int</code> values.</p>
|
||||
*
|
||||
* @param a value 1
|
||||
* @param b value 2
|
||||
* @param c value 3
|
||||
* @return the smallest of the values
|
||||
*/
|
||||
/*
|
||||
private static int min(int a, int b, int c) {
|
||||
// Method copied from NumberUtils to avoid dependency on subpackage
|
||||
if (b < a) {
|
||||
a = b;
|
||||
}
|
||||
if (c < a) {
|
||||
a = c;
|
||||
}
|
||||
return a;
|
||||
}
|
||||
*/
|
||||
|
||||
// startsWith
|
||||
//-----------------------------------------------------------------------
|
||||
|
||||
|
|
Loading…
Reference in New Issue