Removing commented out main method

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@723785 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2008-12-05 16:34:26 +00:00
parent 4ebd1df198
commit eb8b39b145
1 changed files with 0 additions and 11 deletions

View File

@ -700,17 +700,6 @@ public static boolean toBoolean(String str) {
return false;
}
// public static void main(String[] args) {
// long start = System.currentTimeMillis();
// boolean flag = true;
// int count = 0;
// for (int i = 0; i < 100000000; i++) {
// flag = toBoolean("YES");
// }
// long end = System.currentTimeMillis();
// System.out.println((end - start) + " " + flag + " " + count);
// }
/**
* <p>Converts a String to a Boolean throwing an exception if no match found.</p>
*