am 6b26a576: am 7b74aa14: Revert "Force action bar to update generated content description"

* commit '6b26a5766ea7430f5390fbbf4adf7356b1346c62':
  Revert "Force action bar to update generated content description"
diff --git a/v4/honeycomb/android/support/v4/app/ActionBarDrawerToggleHoneycomb.java b/v4/honeycomb/android/support/v4/app/ActionBarDrawerToggleHoneycomb.java
index 9644d03..9f59412 100644
--- a/v4/honeycomb/android/support/v4/app/ActionBarDrawerToggleHoneycomb.java
+++ b/v4/honeycomb/android/support/v4/app/ActionBarDrawerToggleHoneycomb.java
@@ -22,7 +22,6 @@
 import android.app.Activity;
 import android.content.res.TypedArray;
 import android.graphics.drawable.Drawable;
-import android.os.Build;
 import android.util.Log;
 import android.view.View;
 import android.view.ViewGroup;
@@ -76,11 +75,6 @@
             try {
                 final ActionBar actionBar = activity.getActionBar();
                 sii.setHomeActionContentDescription.invoke(actionBar, contentDescRes);
-                // On API <= 19, we need to force the action bar to update its
-                // generated content description. This is otherwise a no-op.
-                if (Build.VERSION.SDK_INT <= 19) {
-                    actionBar.setTitle(actionBar.getTitle());
-                }
             } catch (Exception e) {
                 Log.w(TAG, "Couldn't set content description via JB-MR2 API", e);
             }