All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.oliviercailloux.grade.VoidAggregator Maven / Gradle / Ivy

The newest version!
package io.github.oliviercailloux.grade;

import com.google.common.collect.ImmutableMap;

/**
 * Accepts only the empty set of marks.
 */
public final class VoidAggregator extends StaticWeighter implements MarkAggregator {
  public static VoidAggregator INSTANCE = new VoidAggregator();

  private VoidAggregator() {
    super(ImmutableMap.of());
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy