mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
15 lines
299 B
Java
15 lines
299 B
Java
// LocalsOrMyInstanceFieldsControlFlowPolicy
|
|
|
|
class ExceptionTestCase {
|
|
public String getIndexingLexer(final boolean file, boolean b1, boolean b2) {<caret>
|
|
String highlighter;
|
|
|
|
if (file && b1 && b2) {
|
|
highlighter = "then";
|
|
}
|
|
else {
|
|
highlighter = "else";
|
|
}
|
|
return highlighter;
|
|
}
|
|
} |