1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Remove a temporary variable

This commit is contained in:
Jesse Vincent 2010-08-30 02:16:38 +00:00
parent 65f0d22355
commit 12eb866370

View File

@ -750,7 +750,6 @@ public class MessageList
} }
} }
boolean result;
int position = mListView.getSelectedItemPosition(); int position = mListView.getSelectedItemPosition();
try try
{ {
@ -823,10 +822,9 @@ public class MessageList
} }
finally finally
{ {
result = super.onKeyDown(keyCode, event); return super.onKeyDown(keyCode, event);
} }
return result;
} }
@Override @Override