Clean up verbose logging.
Change-Id: I6b01980e7145c4f8d25a5b50f620903f61a1b427
diff --git a/src/class_linker.h b/src/class_linker.h
index 089040f..5cd72b8 100644
--- a/src/class_linker.h
+++ b/src/class_linker.h
@@ -46,10 +46,10 @@
class ClassLinker {
public:
// Creates the class linker by boot strapping from dex files.
- static ClassLinker* Create(bool verbose, const std::string& boot_class_path, InternTable* intern_table);
+ static ClassLinker* Create(const std::string& boot_class_path, InternTable* intern_table);
// Creates the class linker from one or more images.
- static ClassLinker* Create(bool verbose, InternTable* intern_table);
+ static ClassLinker* Create(InternTable* intern_table);
~ClassLinker();
@@ -252,7 +252,7 @@
pid_t GetDexLockOwner(); // For SignalCatcher.
private:
- explicit ClassLinker(bool verbose, InternTable*);
+ explicit ClassLinker(InternTable*);
// Initialize class linker by bootstraping from dex files
void Init(const std::string& boot_class_path);
@@ -365,8 +365,6 @@
Method* CreateProxyConstructor(SirtRef<Class>& klass, Class* proxy_class);
Method* CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype);
- const bool verbose_;
-
std::vector<const DexFile*> boot_class_path_;
std::vector<const DexFile*> dex_files_;