mirror of
https://github.com/github/codeql.git
synced 2026-04-08 08:34:02 +02:00
8 lines
159 B
Java
8 lines
159 B
Java
public class Test {
|
|
void f() {
|
|
String s1 = "test";
|
|
s1 = s1.replaceAll("t", "x"); // $ Alert
|
|
s1 = s1.replaceAll(".*", "x");
|
|
}
|
|
}
|