chait.blog
weird naming convention of substring() method of java.lang.String class
The substring() method of java.lang.class is not inline with the Java naming conventions for methods.As per Java naming conventions, all the methods will be in camelCase.But this does not bother su…