java.tmbundle icon indicating copy to clipboard operation
java.tmbundle copied to clipboard

Add a "default" method modifier

Open giucal opened this issue 8 years ago • 1 comments

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);
  }
}

giucal avatar Apr 23 '17 14:04 giucal

Still actual. Please, fix it.

JayDi85 avatar Aug 14 '20 18:08 JayDi85