From 96330e0e1de60ac0017d90d68a961dfeb8591f7a Mon Sep 17 00:00:00 2001 From: "Brian S. O'Neill" Date: Wed, 11 Apr 2007 16:05:00 +0000 Subject: Minor variable name change. --- src/main/java/com/amazon/carbonado/util/ThrowUnchecked.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main/java/com') diff --git a/src/main/java/com/amazon/carbonado/util/ThrowUnchecked.java b/src/main/java/com/amazon/carbonado/util/ThrowUnchecked.java index 748670c..e6381bc 100644 --- a/src/main/java/com/amazon/carbonado/util/ThrowUnchecked.java +++ b/src/main/java/com/amazon/carbonado/util/ThrowUnchecked.java @@ -53,7 +53,7 @@ import org.cojen.util.ClassInjector; * @author Brian S O'Neill */ public abstract class ThrowUnchecked { - private static volatile ThrowUnchecked mImpl; + private static volatile ThrowUnchecked cImpl; /** * Throws the given exception, even though it may be checked. This method @@ -71,12 +71,12 @@ public abstract class ThrowUnchecked { throw (Error) t; } - ThrowUnchecked impl = mImpl; + ThrowUnchecked impl = cImpl; if (impl == null) { synchronized (ThrowUnchecked.class) { - impl = mImpl; + impl = cImpl; if (impl == null) { - mImpl = impl = generateImpl(); + cImpl = impl = generateImpl(); } } } -- cgit v1.2.3