diff options
author | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-02 04:12:38 +0000 |
---|---|---|
committer | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-02 04:12:38 +0000 |
commit | 26fb597d6c194693773023168360704f16b87355 (patch) | |
tree | 5b48e2ec3d9fd280790bca4ef4e059ce85374b74 /chrome/browser/views/options | |
parent | 4c91487e8faa49bf82b84cc3b6cd680e0dc25563 (diff) | |
download | chromium_src-26fb597d6c194693773023168360704f16b87355.zip chromium_src-26fb597d6c194693773023168360704f16b87355.tar.gz chromium_src-26fb597d6c194693773023168360704f16b87355.tar.bz2 |
Coverity: Remove unnecessary GetPasswordFormAt call.
CID=6161
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/242108
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27826 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/options')
-rw-r--r-- | chrome/browser/views/options/exceptions_page_view.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/chrome/browser/views/options/exceptions_page_view.cc b/chrome/browser/views/options/exceptions_page_view.cc index 5e9af5e..5e8ac43 100644 --- a/chrome/browser/views/options/exceptions_page_view.cc +++ b/chrome/browser/views/options/exceptions_page_view.cc @@ -97,7 +97,6 @@ void ExceptionsPageView::ButtonPressed( // select only). views::TableSelectionIterator iter = table_view_->SelectionBegin(); int row = *iter; - PasswordForm* selected = table_model_.GetPasswordFormAt(row); DCHECK(++iter == table_view_->SelectionEnd()); if (sender == &remove_button_) { |