I know this is pretty minor, but at the top of each class I finish copying and pasting and then changing the next line of code.
private static final String TAG = MyClass.class.getName();
What I would like to do is not to change the MyClass bit with every copy.
i.e. I would like to write this.
private static final String TAG = this.class.getName();
but it’s clear that this is not at the moment. I know it is secondary, but I generally learned something from the SO answers, and really found out that some good things are just looking to see if there is an answer already.
aronp source share