diff options
Diffstat (limited to 'src/com/android/deskclock/stopwatch')
-rw-r--r-- | src/com/android/deskclock/stopwatch/StopwatchFragment.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/com/android/deskclock/stopwatch/StopwatchFragment.java b/src/com/android/deskclock/stopwatch/StopwatchFragment.java index 06c7578d7..a4bd7ac44 100644 --- a/src/com/android/deskclock/stopwatch/StopwatchFragment.java +++ b/src/com/android/deskclock/stopwatch/StopwatchFragment.java @@ -361,8 +361,7 @@ public final class StopwatchFragment extends DeskClockFragment { @SuppressLint("InlinedApi") @SuppressWarnings("deprecation") final Intent shareIntent = new Intent(Intent.ACTION_SEND) - .addFlags(Utils.isLOrLater() ? Intent.FLAG_ACTIVITY_NEW_DOCUMENT - : Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) + .addFlags(Intent.FLAG_ACTIVITY_NEW_DOCUMENT) .putExtra(Intent.EXTRA_SUBJECT, subject) .putExtra(Intent.EXTRA_TEXT, text) .setType("text/plain"); |