I am trying to become friends with MAT, and have a halfway meaningful 
conversation with it. I noticed that a lot of my direct argument strings 
seem to be dangling around, from code lines like

return "Database update complete";


or 

publishProgress("Completing data import");


Is that bad programming practice? Would I need to assign the text to a 
string variable first and then use that variable? Like this?

final String msg=new String("Completing data import");
publishProgress(msg);

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to