Merge pull request #336 from andrewgaul/user-threads-typo

Fix user threads typo
This commit is contained in:
Andrei Savu 2012-01-26 16:04:44 -08:00
commit c04da585af
1 changed files with 3 additions and 3 deletions

View File

@ -181,10 +181,10 @@ public class PropertiesBuilder {
}
/**
* @see org.jclouds.Constants.PROPERTY_IO_WORKER_THREADS
* @see org.jclouds.Constants.PROPERTY_USER_THREADS
*/
public PropertiesBuilder limitUserThreadsTo(int poolIoWorkerThreads) {
properties.setProperty(PROPERTY_USER_THREADS, Integer.toString(poolIoWorkerThreads));
public PropertiesBuilder limitUserThreadsTo(int poolUserThreads) {
properties.setProperty(PROPERTY_USER_THREADS, Integer.toString(poolUserThreads));
return this;
}