if (context.getDevelop().equals(context.getMaster()))
{
reporter.errorText(SHORT_NAME, "master and develop branches configured with the same name: [" + context.getMaster() + "]");
reporter.endCommand();
throw new SameBranchException("master and develop branches cannot be the same: [" + context.getMaster() + "]");
}
reporter.infoText(SHORT_NAME, "setting develop in config to '" + context.getDevelop() + "'");
gfConfig.setDevelop(context.getDevelop());