I recently updated my JDK version to 8. I have a piece of code which looks like :
StringBuilder abc = new StringBuilder();
abc.append("123");
when I run this, It is throwing error:
The type java.lang.CharSequence cannot be resolved. It is indirectly referenced from required .class files
I have updated all the dependencies of JDK, but noting helped.