Fix cpplint whitespace/braces issues
Change-Id: Ide80939faf8e8690d8842dde8133902ac725ed1a
diff --git a/runtime/thread_pool.cc b/runtime/thread_pool.cc
index f0f6f18..784a7ca 100644
--- a/runtime/thread_pool.cc
+++ b/runtime/thread_pool.cc
@@ -60,7 +60,7 @@
return NULL;
}
-void ThreadPool::AddTask(Thread* self, Task* task){
+void ThreadPool::AddTask(Thread* self, Task* task) {
MutexLock mu(self, task_queue_lock_);
tasks_.push_back(task);
// If we have any waiters, signal one.
@@ -173,7 +173,7 @@
}
}
-size_t ThreadPool::GetTaskCount(Thread* self){
+size_t ThreadPool::GetTaskCount(Thread* self) {
MutexLock mu(self, task_queue_lock_);
return tasks_.size();
}