You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BasePlugin.java 210B

1234567891011
  1. import org.sonar.api.SonarPlugin;
  2. import java.util.Collections;
  3. import java.util.List;
  4. public class BasePlugin extends SonarPlugin {
  5. public List getExtensions() {
  6. return Collections.emptyList();
  7. }
  8. }