Reports any calls to java.lang.String.replaceAll() with "." as the first argument. Calling replaceAll(".", ...) replaces all of the characters in a string with its second argument, which is rarely the desired functionality. More probably, replaceAll("\.", ...) was intended.