com.bazaarvoice.maven.plugin.s3repo.util.NullStreamConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of s3repo-maven-plugin Show documentation
Show all versions of s3repo-maven-plugin Show documentation
Create or update an S3 YUM repository.
package com.bazaarvoice.maven.plugin.s3repo.util;
import org.codehaus.plexus.util.cli.StreamConsumer;
/**
* Simply ignores any data
*/
public final class NullStreamConsumer implements StreamConsumer {
public static final NullStreamConsumer theInstance = new NullStreamConsumer();
@Override
public void consumeLine(String line) {
// ignore
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy