Another string optimization PMD rule! If you see code calling String.indexOf() like this: String str = hello world;int location = str.indexOf(w); // using indexOf(String) with a one character String! That works, but a faster way is to do: String str...