From 6b2ec193c24195dbc85235dee76327f4aa1745d9 Mon Sep 17 00:00:00 2001 From: Eric House Date: Wed, 5 Jun 2013 08:04:00 -0700 Subject: [PATCH] cleanup --- .../XWords4/src/org/eehouse/android/xw4/GameListItem.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameListItem.java b/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameListItem.java index 9ffb048df..4a40b155c 100644 --- a/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameListItem.java +++ b/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameListItem.java @@ -189,12 +189,12 @@ public class GameListItem extends LinearLayout break; } + String name = GameUtils.getName( m_context, m_rowid ); if ( null != value ) { - String name = GameUtils.getName( m_context, m_rowid ); value = m_context.getString( R.string.str_game_namef, name, value ); } else { - value = GameUtils.getName( m_context, m_rowid ); + value = name; } view.setText( value );