Deprecate Regex.matcher() with ERROR and provide the replacement.

This commit is contained in:
Ilya Gorbunov
2015-11-18 05:43:44 +03:00
parent eb2a976f32
commit bf3a77b736
2 changed files with 2 additions and 2 deletions
@@ -313,7 +313,7 @@ public class AnnotationProcessingManager(
fun processLines(lines: Sequence<String>) {
for (line in lines) {
if (line.isBlank() || !JAVA_FQNAME_PATTERN.matcher(line).matches()) continue
if (line.isBlank() || !JAVA_FQNAME_PATTERN.matches(line)) continue
annotationProcessors.add(line)
}
}