As I'm writing, its absence is also evident in GitHub syntax highlighting: ```java public interface Reader { int readInto(byte[] buf, int n); default int readInto(byte[] buf) { return readInto(buf, buf.length); } } ```