When debugging in Eclipse, I step into (F5) a statement such as the following,
encryptedBytes = LightWeightEncryptor.encrypt(messageBytes, password.toCharArray());
the debugger steps into JRE method String.toCharArray(), but I want it to skip that and step into my own code, LightWeightEncryptor.encrypt.
I get tired of having to step out of the JRE code and step back into my own. I've seen lots of ways to step into JRE code, but I can't find a way to avoid it.

