com.exasol.projectkeeper.github.NullContentProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of project-keeper-core Show documentation
Show all versions of project-keeper-core Show documentation
Project keeper is a tool that verifies and fixes project setups.
The newest version!
package com.exasol.projectkeeper.github;
/**
* This {@link WorkflowOutput} is used by {@link OutputPublisherFactory} when environment variable {@code GITHUB_OUTPUT}
* is not present. This class just logs published key/value pairs and does not actually publish them.
*/
class NullContentProvider implements WorkflowOutput {
@Override
public void publish(final String key, final String value) {
// Ignore
}
@Override
public void close() {
// Ignore
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy