mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-18 18:31:55 +07:00
86bb492eb2
Fixes IDEA-152047 Better "Split into 2 if's" result for else-if cases
9 lines
196 B
Java
9 lines
196 B
Java
public class SplitCondition {
|
|
private static void appendString(StringBuilder builder, boolean condition) {
|
|
if (condition) {
|
|
if (builder.length() > 0) {
|
|
}
|
|
}
|
|
}
|
|
}
|