I'am working with spring hibernate maven in eclipse ide .
when I use StringBuffer
I am getting the error:
The type java.lang.CharSequence cannot be resolved. It is indirectly referenced from required .class files
Example code:
StringBuffer sb = new StringBuffer();
sb.append("some string");
The error is showing in append code line.
How can i resolve this?