Add assert prior to removing dead (?) code

There should no longer be a need for curThis(), but let's confim by
asserting for a while.
This commit is contained in:
Eric House 2017-09-28 06:51:59 -07:00
parent a3bf942004
commit bbffe4caf1

View file

@ -163,6 +163,7 @@ public class DelegateBase implements DlgClickNotify,
}
if ( this != result ) {
Log.d( TAG, "%s.curThis() => " + result, this.toString() );
Assert.fail();
}
return result;
}