summaryrefslogtreecommitdiffstats
path: root/runtime/base
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2013-07-10 13:13:32 -0700
committerBrian Carlstrom <bdc@google.com>2013-07-24 18:19:18 -0700
commit23d5cffcb8e32aaa6ce0895ade28849f72d90463 (patch)
treeb577090aad0026510d104562be827dc155349d2e /runtime/base
parente5e4cd8e5be53b7942a436fddd9579415432585f (diff)
downloadart-23d5cffcb8e32aaa6ce0895ade28849f72d90463.zip
art-23d5cffcb8e32aaa6ce0895ade28849f72d90463.tar.gz
art-23d5cffcb8e32aaa6ce0895ade28849f72d90463.tar.bz2
Revert "Always enable lock level checks." DO NOT MERGE
This reverts commit ccf124800fe025be3ca05c28a60514909ca66a11. (cherry picked from commit 27c590edf6c24107b6473e84e526c432bd081f6e) Change-Id: Id3f58a0e92bb7719d6099c7b288b8a33c2456c40
Diffstat (limited to 'runtime/base')
-rw-r--r--runtime/base/mutex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/base/mutex.h b/runtime/base/mutex.h
index b924798..dea52a6 100644
--- a/runtime/base/mutex.h
+++ b/runtime/base/mutex.h
@@ -53,7 +53,7 @@ namespace art {
class ScopedContentionRecorder;
class Thread;
-const bool kDebugLocking = true || kIsDebugBuild;
+const bool kDebugLocking = kIsDebugBuild;
// Base class for all Mutex implementations
class BaseMutex {