ru.vyarus.yaml.updater.profile.ProdConfigurator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yaml-config-updater Show documentation
Show all versions of yaml-config-updater Show documentation
Merges current yaml config with a new version to add missed properties
package ru.vyarus.yaml.updater.profile;
import ru.vyarus.yaml.updater.UpdateConfig;
import java.io.File;
import java.io.InputStream;
/**
* Represents normal tool run.
*
* Class required just to avoid warnings in case of using directly parametrized class (and to make
* {@link ru.vyarus.yaml.updater.YamlUpdater} constructors more readable.
*/
public class ProdConfigurator extends UpdateConfig.Configurator {
public ProdConfigurator(final File current, final InputStream update) {
super(current, update);
}
}