aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/modifier/InputModifier2.java
blob: 2a9edbe3b54225168171cd7f0ef9269dc77aa5a3 (plain)
1
2
3
4
5
6
7
8
9
package com.puppycrawl.tools.checkstyle.checks.modifier;
import java.util.Comparator;

public interface InputModifier2 extends Comparator<Integer> {
    @Override
    default int compare(Integer a, Integer b) {
     return 0;
    }
  }