I tried dummy code: public class BufferAppender { public static void method() { StringBuffer buffer = new StringBuffer(0); buffer.append("a").append("b"); } }
Intention works for me... Maybe there's something specific in your code?
I don't get the intention action convert StringBuffer.append() chain into sequence anymore...
Hello Omair-Inam Abdul-Matin,
I tried dummy code:
public class BufferAppender {
public static void method() {
StringBuffer buffer = new StringBuffer(0);
buffer.append("a").append("b");
}
}
Intention works for me... Maybe there's something specific in your code?
Alexander.