We recently decided to migrate our solution from java 7 to 8. However at the first step we found that there are some implementation changes in java 8 like String.split() method Here that can cause problem to codes written in Java 7!!
we rolled baked our project to Java 7 for now to investigate more on those differences.
Do you know any other changes in Java 8 can cause the same problem ?
PS: I know Java 8 new features By changes I mean those changes with the same API(method signature) but different implementation which can lead to different outcome!! like this method -> String.split()
Before down vote read the comments!!