Today I watched the video, and I saw the teacher doing the correction in his code in Eclipse without touching the mouse. Below is the code.
System.out.println(Character.toUpperCase(ch)'c');
He changed the code to:
System.out.println(Character.toUpperCase('c'));
I always wanted to do this because it hurts to do this with backspaces and re-type ')' at the end. Does anyone know how to do this. Thanks
java eclipse
yovan786
source share