From cdd899615bc7a22506c89d3828c236788f9f2b2d Mon Sep 17 00:00:00 2001 From: Jesse Wilson Date: Sat, 20 Feb 2010 10:35:21 -0800 Subject: Removing dead code from BigInt --- math/src/main/java/java/math/BigInt.java | 2 -- 1 file changed, 2 deletions(-) (limited to 'math/src') diff --git a/math/src/main/java/java/math/BigInt.java b/math/src/main/java/java/math/BigInt.java index 3ba1da2..1eae2e0 100644 --- a/math/src/main/java/java/math/BigInt.java +++ b/math/src/main/java/java/math/BigInt.java @@ -82,7 +82,6 @@ class BigInt public static int consumeErrors(StringBuilder sb) { int cnt = 0; int e, reason; - boolean first = true; while ((e = NativeBN.ERR_get_error()) != 0) { reason = e & 255; if (reason == 103) { @@ -96,7 +95,6 @@ class BigInt if (reason == 65) { throw new OutOfMemoryError(); } - if (!first) { sb.append(" *** "); first = false; } sb.append(e).append(": "); String s = NativeBN.ERR_error_string(e); sb.append(s); -- cgit v1.1