mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 04:07:30 +07:00
GitOrigin-RevId: 5fcbd8eb55a8f03f1db1ce67daa850964dae63a4
10 lines
267 B
Java
10 lines
267 B
Java
class Main {
|
|
|
|
public static void x(StringTemplate.Processor<String, RuntimeException> p, String s) {
|
|
newMethod(p, s);
|
|
}
|
|
|
|
private static void newMethod(StringTemplate.Processor<String, RuntimeException> p, String s) {
|
|
String t = p."\{s}";
|
|
}
|
|
} |