View Javadoc
1   /*
2   DefaultComesLast
3   skipIfLastAndSharedWithCase = true
4   
5   
6   */
7   
8   package com.puppycrawl.tools.checkstyle.checks.coding.defaultcomeslast;
9   
10  public interface InputDefaultComesLastDefaultMethodsInInterface2 {
11      default int apply() {
12          return 1;
13      }
14  }