pass Context to CrashTrack

This commit is contained in:
Eric House 2014-02-10 07:14:00 -08:00
parent f27394ca03
commit daa59ee03d
2 changed files with 4 additions and 2 deletions

View file

@ -20,6 +20,8 @@
package org.eehouse.android.xw4; package org.eehouse.android.xw4;
import android.content.Context;
public class CrashTrack { public class CrashTrack {
public static void init() {} // does nothing here public static void init( Context context ) {} // does nothing here
} }

View file

@ -370,7 +370,7 @@ public class GamesList extends XWExpandableListActivity
// scary, but worth playing with: // scary, but worth playing with:
// Assert.assertTrue( isTaskRoot() ); // Assert.assertTrue( isTaskRoot() );
CrashTrack.init(); CrashTrack.init( this );
m_selGames = new HashSet<Long>(); m_selGames = new HashSet<Long>();
m_selGroupIDs = new HashSet<Long>(); m_selGroupIDs = new HashSet<Long>();