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

ru.vyarus.yaml.updater.profile.ProdConfigurator Maven / Gradle / Ivy

There is a newer version: 1.4.4
Show newest version
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); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy