Skip to content

Commit

Permalink
make auto create and auto delete during reload parameters overridable…
Browse files Browse the repository at this point in the history
… in the database.
  • Loading branch information
chenson42 committed May 29, 2008
1 parent c1558d2 commit 4c60652
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
Expand Up @@ -51,7 +51,6 @@
import org.jumpmind.symmetric.service.IDataService;
import org.jumpmind.symmetric.service.INodeService;
import org.jumpmind.symmetric.service.IOutgoingBatchService;
import org.jumpmind.symmetric.service.IParameterService;
import org.jumpmind.symmetric.service.IPurgeService;
import org.springframework.dao.DataAccessException;
import org.springframework.jdbc.core.PreparedStatementCallback;
Expand All @@ -70,8 +69,6 @@ public class DataService extends AbstractService implements IDataService {

private IOutgoingBatchService outgoingBatchService;

private IParameterService parameterService;

private String tablePrefix;

private IDbDialect dbDialect;
Expand Down Expand Up @@ -379,8 +376,4 @@ public void setOutgoingBatchService(IOutgoingBatchService outgoingBatchService)
this.outgoingBatchService = outgoingBatchService;
}

public void setParameterService(IParameterService parameterService) {
this.parameterService = parameterService;
}

}
1 change: 0 additions & 1 deletion symmetric/src/main/resources/symmetric-services.xml
Expand Up @@ -114,7 +114,6 @@
<property name="sql" ref="dataServiceSql"/>
<property name="jdbcTemplate" ref="jdbcTemplate" />
<property name="configurationService" ref="configurationService" />
<property name="parameterService" ref="parameterService" />
<property name="runtimeConfiguration" ref="runtimeConfiguration" />
<property name="parameterService" ref="parameterService" />
<property name="nodeService" ref="nodeService" />
Expand Down

0 comments on commit 4c60652

Please sign in to comment.