If there are no further appends made to the StringBuffer the code should be rewritten as
String buff1 = "some value some value B";
This is more concise, more readable and safer than:
StringBuffer buff1 = new StringBuffer("");
buff1.append("some value A");
buff1.append("some value B");
I say 'safer' because a String is immutable and a StringBuffer is immutable, so there's no risk of the String accidentally being changed after construction.
Aside
It's a common misconception that "concatenating Strings in Java is bad". While it's true that you shouldn't write code like this
String buff1 = "foo";
buff1 += "some value A";
buff1 += "some value B";
It's perfectly acceptable to write code like this:
String buff1 = "foo" + "some value A" + "some value B";
when the concatenation is performed in a single statement the code will be optimized to:
String buff1 = "foo some value A some value B";