Expand away the QUIET_ZYGOTE_MONITOR macro.

Change-Id: I74eac297597e8e7c9a13d03335f91cf289e060df
diff --git a/vm/Sync.c b/vm/Sync.c
index 67263a6..0a0e65a 100644
--- a/vm/Sync.c
+++ b/vm/Sync.c
@@ -212,11 +212,9 @@
  */
 void dvmDumpMonitorInfo(const char* msg)
 {
-#if QUIET_ZYGOTE_MONITOR
     if (gDvm.zygote) {
         return;
     }
-#endif
 
     int totalCount;
     int liveCount;
diff --git a/vm/Sync.h b/vm/Sync.h
index 1a168b9..e63fb55 100644
--- a/vm/Sync.h
+++ b/vm/Sync.h
@@ -68,8 +68,6 @@
 struct Thread;
 typedef struct Monitor Monitor;
 
-#define QUIET_ZYGOTE_MONITOR 1
-
 /*
  * Initialize a Lock to the proper starting value.
  * This is necessary for thin locking.