remove dead code

This commit is contained in:
Eric House 2019-04-05 12:47:07 -07:00
parent 762e701a00
commit d3f4a729d7
2 changed files with 0 additions and 7 deletions

View file

@ -562,7 +562,6 @@ public class BoardDelegate extends DelegateBase
m_timers = new TimerRunnable[4]; // needs to be in sync with m_timers = new TimerRunnable[4]; // needs to be in sync with
// XWTimerReason // XWTimerReason
m_view = (BoardView)findViewById( R.id.board_view ); m_view = (BoardView)findViewById( R.id.board_view );
m_view.setBoardDelegate( this );
if ( ! ABUtils.haveActionBar() ) { if ( ! ABUtils.haveActionBar() ) {
m_tradeButtons = findViewById( R.id.exchange_buttons ); m_tradeButtons = findViewById( R.id.exchange_buttons );
if ( null != m_tradeButtons ) { if ( null != m_tradeButtons ) {

View file

@ -53,7 +53,6 @@ public class BoardView extends View implements BoardHandler, SyncedDraw {
private static final int PINCH_THRESHOLD = 40; private static final int PINCH_THRESHOLD = 40;
private Context m_context; private Context m_context;
private BoardDelegate m_boardDlgt;
private int m_defaultFontHt; private int m_defaultFontHt;
private int m_mediumFontHt; private int m_mediumFontHt;
private Runnable m_invalidator; private Runnable m_invalidator;
@ -285,11 +284,6 @@ public class BoardView extends View implements BoardHandler, SyncedDraw {
return layoutDone; return layoutDone;
} // layoutBoardOnce } // layoutBoardOnce
protected void setBoardDelegate( BoardDelegate dlgt )
{
m_boardDlgt = dlgt;
}
// BoardHandler interface implementation // BoardHandler interface implementation
public void startHandling( Activity parent, JNIThread thread, public void startHandling( Activity parent, JNIThread thread,
CommsConnTypeSet connTypes ) CommsConnTypeSet connTypes )