java.tmbundle
java.tmbundle copied to clipboard
Add a "default" method modifier
As I'm writing, its absence is also evident in GitHub syntax highlighting:
public interface Reader {
int readInto(byte[] buf, int n);
default int readInto(byte[] buf) {
return readInto(buf, buf.length);
}
}
Still actual. Please, fix it.