diff options
author | Brian Carlstrom <bdc@google.com> | 2013-07-17 17:44:30 -0700 |
---|---|---|
committer | Brian Carlstrom <bdc@google.com> | 2013-07-17 21:46:11 -0700 |
commit | 2ce745c06271d5223d57dbf08117b20d5b60694a (patch) | |
tree | 08ca327d1f1c8266fafb11422cfad6982f21e0bb /runtime/dex_file.cc | |
parent | fc0e3219edc9a5bf81b166e82fd5db2796eb6a0d (diff) | |
download | art-2ce745c06271d5223d57dbf08117b20d5b60694a.tar.gz art-2ce745c06271d5223d57dbf08117b20d5b60694a.tar.bz2 art-2ce745c06271d5223d57dbf08117b20d5b60694a.zip |
Fix cpplint whitespace/braces issues
Change-Id: Ide80939faf8e8690d8842dde8133902ac725ed1a
Diffstat (limited to 'runtime/dex_file.cc')
-rw-r--r-- | runtime/dex_file.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/dex_file.cc b/runtime/dex_file.cc index 1e37dcde07..cd34c3c89e 100644 --- a/runtime/dex_file.cc +++ b/runtime/dex_file.cc @@ -252,7 +252,7 @@ DexFile::~DexFile() { class ScopedJniMonitorLock { public: - ScopedJniMonitorLock(JNIEnv* env, jobject locked) : env_(env), locked_(locked){ + ScopedJniMonitorLock(JNIEnv* env, jobject locked) : env_(env), locked_(locked) { env->MonitorEnter(locked_); } ~ScopedJniMonitorLock() { |