bear.plugins.sh.WriteStringResult Maven / Gradle / Ivy
package bear.plugins.sh;
import bear.vcs.CommandLineResult;
/**
* @author Andrey Chaschev [email protected]
*/
public class WriteStringResult extends CommandLineResult {
boolean wrote;
public WriteStringResult(CommandLineResult> r, boolean wrote) {
super(r);
this.wrote = wrote;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy