In my main screen class, I get the following warning:
Warning!: member data 'String url' not required in class: com.mycompany.score.MyScreen [...] line 54
Now, line 54 is:
48 public class MyScreen extends MainScreen
49 {
50 private HorizontalFieldManager editPane;
51 private VerticalFieldManager buttonPane;
52 private HorizontalFieldManager contentPane;
53 private LabelField label;
54 private BasicEditField input;
55 private ButtonField parseButton;
.
.
.
and nowhere do I have a field (or method), url, in the class let alone at that line. I've tried refreshing, closing/opening the file, bouncing Eclipse, etc.
While this is a only a warning, I try to fix/eliminate all warnings in my code. At very least, I want to be convinced I know why I shouldn't care about each one I let pass.
I've spent a great deal of time looking for a solution to this problem without success. It would be nice to have a definitive answer and not, "just ignore it."
Thanks,
Russ Bateman