From eb8b39b145d863e8fca833c13479e466ad405c61 Mon Sep 17 00:00:00 2001 From: Henri Yandell Date: Fri, 5 Dec 2008 16:34:26 +0000 Subject: [PATCH] Removing commented out main method git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@723785 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/commons/lang/BooleanUtils.java | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/java/org/apache/commons/lang/BooleanUtils.java b/src/java/org/apache/commons/lang/BooleanUtils.java index 8b5028c4b..0e7f4eb79 100644 --- a/src/java/org/apache/commons/lang/BooleanUtils.java +++ b/src/java/org/apache/commons/lang/BooleanUtils.java @@ -700,17 +700,6 @@ public class BooleanUtils { 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); -// } - /** *

Converts a String to a Boolean throwing an exception if no match found.

*