From 05fbbf646dd2af475b9d45409a54f26d2992fe29 Mon Sep 17 00:00:00 2001 From: Henri Yandell Date: Tue, 20 Jul 2010 18:03:47 +0000 Subject: [PATCH] Removing commented out private method git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@965937 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/commons/lang3/StringUtils.java | 21 ------------------- 1 file changed, 21 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/StringUtils.java b/src/main/java/org/apache/commons/lang3/StringUtils.java index 63e12dbc0..269bb9f92 100644 --- a/src/main/java/org/apache/commons/lang3/StringUtils.java +++ b/src/main/java/org/apache/commons/lang3/StringUtils.java @@ -6076,27 +6076,6 @@ allows us to retain the previous cost counts as required by the algorithm (takin return p[n]; } - /** - *

Gets the minimum of three int values.

- * - * @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 //-----------------------------------------------------------------------