From 14a13fe2418025c24b458f0729843bd03032f0ec Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Tue, 23 Oct 2012 15:38:49 -0700 Subject: [PATCH] Minor cleanup --- .../plugin-src/com/todoroo/astrid/actfm/CommentsActivity.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/astrid/plugin-src/com/todoroo/astrid/actfm/CommentsActivity.java b/astrid/plugin-src/com/todoroo/astrid/actfm/CommentsActivity.java index 9cef7cb6c..ee64dffc1 100644 --- a/astrid/plugin-src/com/todoroo/astrid/actfm/CommentsActivity.java +++ b/astrid/plugin-src/com/todoroo/astrid/actfm/CommentsActivity.java @@ -8,7 +8,6 @@ package com.todoroo.astrid.actfm; import android.os.Bundle; import android.support.v4.app.ActionBar; import android.support.v4.app.Fragment; -import android.support.v4.app.FragmentManager; import android.support.v4.app.FragmentTransaction; import android.support.v4.view.MenuItem; import android.widget.TextView; @@ -43,8 +42,7 @@ public class CommentsActivity extends AstridActivity { tag = "tagupdates_fragment"; //$NON-NLS-1$ } - FragmentManager manager = getSupportFragmentManager(); - FragmentTransaction transaction = manager.beginTransaction(); + FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); transaction.add(R.id.comments_fragment_container, fragment, tag); transaction.commit(); }