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:
Henri Yandell 2010-07-20 18:03:47 +00:00
parent 22da373ea4
commit 05fbbf646d
1 changed files with 0 additions and 21 deletions

View File

@ -6076,27 +6076,6 @@ allows us to retain the previous cost counts as required by the algorithm (takin
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
//-----------------------------------------------------------------------