Author: tv
Date: Sun Oct 30 18:06:03 2011
New Revision: 1195202
URL: http://svn.apache.org/viewvc?rev=1195202&view=rev
Log:
Fix spelling
Modified:
commons/proper/jcs/trunk/src/java/org/apache/jcs/utils/threadpool/PoolConfiguration.java
Modified:
commons/proper/jcs/trunk/src/java/org/apache/jcs/utils/threadpool/PoolConfiguration.java
URL:
http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/java/org/apache/jcs/utils/threadpool/PoolConfiguration.java?rev=1195202&r1=1195201&r2=1195202&view=diff
==============================================================================
---
commons/proper/jcs/trunk/src/java/org/apache/jcs/utils/threadpool/PoolConfiguration.java
(original)
+++
commons/proper/jcs/trunk/src/java/org/apache/jcs/utils/threadpool/PoolConfiguration.java
Sun Oct 30 18:06:03 2011
@@ -32,10 +32,10 @@ public class PoolConfiguration
/** Should we bound the queue */
private boolean useBoundary = true;
- /** If the queue is boudned, how big can it get */
+ /** If the queue is bounded, how big can it get */
private int boundarySize = 2000;
- /** only has meaning if a bounday is used */
+ /** only has meaning if a boundary is used */
private int maximumPoolSize = 150;
/**
@@ -195,13 +195,13 @@ public class PoolConfiguration
}
else
{
- // the value is invalid, dfault to RUN
+ // the value is invalid, default to RUN
this.whenBlockedPolicy = POLICY_RUN;
}
}
else
{
- // the value is null, dfault to RUN
+ // the value is null, default to RUN
this.whenBlockedPolicy = POLICY_RUN;
}
}