blob: f776d7d19b7d3af40e2ab06dede313043ffc7c14 [file] [log] [blame]
public class SplitCondition {
private static void appendString(StringBuilder builder, boolean condition) {
if (condition) {
if (builder.length() > 0) {
}
}
}
}