Don't allow monkeys to save drafts

Bug: 6300751
Change-Id: Ic7a4ff4424132c2118ae3a1232bec250cddcb296
diff --git a/src/com/android/mail/compose/ComposeActivity.java b/src/com/android/mail/compose/ComposeActivity.java
index e9405cb..a7a0e2c 100644
--- a/src/com/android/mail/compose/ComposeActivity.java
+++ b/src/com/android/mail/compose/ComposeActivity.java
@@ -1586,7 +1586,7 @@
             boolean orientationChanged) {
         // Check if user is a monkey. Monkeys can compose and hit send
         // button but are not allowed to send anything off the device.
-        if (!save && ActivityManager.isUserAMonkey()) {
+        if (ActivityManager.isUserAMonkey()) {
             return;
         }