blob: 7a9f39d0cd47f90d72a8f934328a4cd6a5b692fa [file] [log] [blame]
package aQute.bnd.build.model.conversions;
public class NoopConverter<T> implements Converter<T,T> {
public T convert(T input) throws IllegalArgumentException {
return input;
}
}