While looking at online code samples, I have sometimes come across an assignment of a String constant to a String object via the use of the new operator.
The sole utility for this constructor described by Software Monkey and Ruggs seems to have disappeared from JDK7.
There is no longer an offset field in class String, and substring always use
Arrays.copyOfRange(char[] original, int from, int to)