mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
16 lines
235 B
Java
16 lines
235 B
Java
class Some {
|
|
void assertContainsAllVariants(boolean b) {
|
|
try {
|
|
assert b;
|
|
System.out.println();
|
|
} catch (Throwable e) {
|
|
if (e instanceof AssertionError) {
|
|
System.out.println();
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
|