blob: b2cc1c54e8a01b121495b6f74fa727ae53702529 [file] [log] [blame]
package com.siyeh.igfixes.style.replace_with_string;
class Precedence3 {
void foo() {
String start = "0", end = "0";
String string = new StringB<caret>uilder().append("Time: ").append(end + start).append(".").toString();
}
}