diff options
author | Brian S. O'Neill <bronee@gmail.com> | 2007-04-11 16:05:00 +0000 |
---|---|---|
committer | Brian S. O'Neill <bronee@gmail.com> | 2007-04-11 16:05:00 +0000 |
commit | 96330e0e1de60ac0017d90d68a961dfeb8591f7a (patch) | |
tree | a0e2ed1e522b13a8e4a2afb54de1a6d8f34efed1 /src/main/java/com/amazon | |
parent | d628938117f2e7bb6c564ea61762bfa78f6df443 (diff) |
Minor variable name change.
Diffstat (limited to 'src/main/java/com/amazon')
-rw-r--r-- | src/main/java/com/amazon/carbonado/util/ThrowUnchecked.java | 8 |
1 files changed, 4 insertions, 4 deletions
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();
}
}
}
|