If I create a class that looks like this:
public class TagManager {
private final Context mCtx;
public TagManager (Context ctx) {
this.mCtx = ctx;
}
}
What is the difference between using
this.mCtx = ctx;
versus
mCtx = ctx;
As far as I can tell they both do the same thing but I can't find any discussion of it.