# HG changeset patch # User Vladimir Vukicevic # Date 1199249635 28800 # Node ID b4a7207bf0af37c3018af547343f19624d8c8de3 # Parent 8b7dc32c23bd5685b095fb41d38f383f131711d6 Get rid of bogus debug message ("field's manager is null!") diff -r 8b7dc32c23bd5685b095fb41d38f383f131711d6 -r b4a7207bf0af37c3018af547343f19624d8c8de3 src/org/mrrupert/eveberry/EveMarketOrderListField.java --- a/src/org/mrrupert/eveberry/EveMarketOrderListField.java Tue Jan 01 20:53:39 2008 -0800 +++ b/src/org/mrrupert/eveberry/EveMarketOrderListField.java Tue Jan 01 20:53:55 2008 -0800 @@ -223,14 +223,10 @@ // Database reply listener public void onResult(int lookupType, int id, String name) { - // this field may have been removed/whatever'd before we got a chance - // to get the result; make sure to not blow up! - Manager m = getManager(); - if (m == null) - EveBerry.debug("field's manager is null!"); - // this is a bit of a hack; the market screen might not be topmost by the time - // a name query comes back. But, this isn't going to hurt anything. + // a name query comes back. But, this isn't going to hurt anything; + // for whatever reason, calling invalidate() on ourselves isn't doing the right + // thing. EveBerry.sApp.getActiveScreen().invalidate(); } }