git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@567472
13f79535-47bb-0310-9956-
ffa450edef68
ttl,
soTimeout,
this);
- boolean recEnabled = Boolean.getBoolean(properties.getProperty("recoveryEnabled","true"));
+ String value = properties.getProperty("recoveryEnabled","true");
+ boolean recEnabled = Boolean.valueOf(value).booleanValue() ;
impl.setRecoveryEnabled(recEnabled);
int recCnt = Integer.parseInt(properties.getProperty("recoveryCounter","10"));
impl.setRecoveryCounter(recCnt);