am f6d04ed7: fix build

* commit 'f6d04ed7b875e56ae57f24366daf981f99c6f06c':
  fix build
diff --git a/src/com/android/mail/ui/AbstractConversationViewFragment.java b/src/com/android/mail/ui/AbstractConversationViewFragment.java
index 12a605c..ba63588 100644
--- a/src/com/android/mail/ui/AbstractConversationViewFragment.java
+++ b/src/com/android/mail/ui/AbstractConversationViewFragment.java
@@ -202,17 +202,6 @@
         // base uri that us guaranteed to be unique for this conversation.
         mBaseUri = "x-thread://" + mAccount.name + "/" + mConversation.id;
 
-        // On JB or newer, we use the 'webkitAnimationStart' DOM event to signal load complete
-        // Below JB, try to speed up initial render by having the webview do supplemental draws to
-        // custom a software canvas.
-        // TODO(mindyp):
-        //PAGE READINESS SIGNAL FOR JELLYBEAN AND NEWER
-        // Notify the app on 'webkitAnimationStart' of a simple dummy element with a simple no-op
-        // animation that immediately runs on page load. The app uses this as a signal that the
-        // content is loaded and ready to draw, since WebView delays firing this event until the
-        // layers are composited and everything is ready to draw.
-        // This signal does not seem to be reliable, so just use the old method for now.
-        mEnableContentReadySignal = false; //Utils.isRunningJellybeanOrLater();
         LogUtils.d(LOG_TAG, "onCreate in ConversationViewFragment (this=%s)", this);
         // Not really, we just want to get a crack to store a reference to the change_folder item
         setHasOptionsMenu(true);