Hi I am new to Java and need some help with a call to a private helper method.
The helper method has a arraylist and char in the argument.
Helper Method signature:
[ private List<aClass1> getDancers(List<aClass1> aList, char c) ]
Here is the call to the above helper method within another method that is not working:
[ List<aClass1> dancers = this.getDancers(dancersList, c); ]
Both methods are in the same class. Although both methods are in aClass2 but use aClass1.
Hope that makes sense!