mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
16 lines
292 B
Java
16 lines
292 B
Java
|
|
import org.checkerframework.checker.tainting.qual.Untainted;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
class StaticPropagation {
|
|
public static void test() {
|
|
sink("1" + System.currentTimeMillis()); //not warn
|
|
}
|
|
|
|
public static void sink(@Untainted String string) {
|
|
|
|
}
|
|
}
|