(String className, MethodNode methodNode)
| 163 | } |
| 164 | |
| 165 | void reportStringToString(String className, MethodNode methodNode) throws XMLStreamException { |
| 166 | final String msg = "Call of toString() on String in class " + className + " in method " |
| 167 | + getMethodDescription(methodNode); |
| 168 | reportWarning("stringToString", className, msg, null); |
| 169 | } |
| 170 | |
| 171 | private void reportWarning(String type, String className, String msg, String msg2) |
| 172 | throws XMLStreamException { |
no test coverage detected