From 740d52da1fd94f0f5b6284878a3544daa74b6532 Mon Sep 17 00:00:00 2001 From: Jesse Wilson Date: Sat, 20 Feb 2010 10:35:21 -0800 Subject: [PATCH] Removing dead code from BigInt --- libcore/math/src/main/java/java/math/BigInt.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/libcore/math/src/main/java/java/math/BigInt.java b/libcore/math/src/main/java/java/math/BigInt.java index 3ba1da24d..1eae2e0e6 100644 --- a/libcore/math/src/main/java/java/math/BigInt.java +++ b/libcore/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); -- 2.11.0