mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
Part of IDEA-334171 Store MockJDK in artifact repository, rather than in Git GitOrigin-RevId: 9c6214e3ead47cc164d20813f5a2b37136607213
11 lines
282 B
Java
11 lines
282 B
Java
class Main {
|
|
|
|
class FailureException extends Exception {}
|
|
|
|
public static void x(StringTemplate.Processor<String, FailureException> p, int i, int j) {
|
|
try {
|
|
String t = <selection>p."\{i} + \{j} = \{i + j}";</selection>
|
|
}
|
|
catch (FailureException ignore) {}
|
|
}
|
|
} |