Try replacing you method with this,
public static char upperCaseToLowerCase(char ch){
ch = ch.toLowerCase();
return ch;
}
solved Converting Uppercase to Lowercase using char
Try replacing you method with this,
public static char upperCaseToLowerCase(char ch){
ch = ch.toLowerCase();
return ch;
}
solved Converting Uppercase to Lowercase using char