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