mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-01 06:19:57 +01:00
cleanup
This commit is contained in:
parent
9fbce6f942
commit
5460941ba8
1 changed files with 1 additions and 7 deletions
|
@ -542,14 +542,8 @@ public class DBUtils {
|
|||
public static void appendChatHistory( Context context, String path,
|
||||
String msg, boolean local )
|
||||
{
|
||||
|
||||
Assert.assertNotNull( msg );
|
||||
int id;
|
||||
if ( local ) {
|
||||
id = R.string.chat_local_id;
|
||||
} else {
|
||||
id = R.string.chat_other_id;
|
||||
}
|
||||
int id = local ? R.string.chat_local_id : R.string.chat_other_id;
|
||||
msg = context.getString( id ) + msg;
|
||||
|
||||
String cur = getChatHistoryStr( context, path );
|
||||
|
|
Loading…
Reference in a new issue