in src/main/java/org/apache/sling/commons/threads/impl/ThreadPoolMBeanImpl.java [76:83]
public int getExecutorMaximumPoolSize() {
final ThreadPoolExecutor tpe = this.entry.getExecutor();
if ( tpe != null ) {
return tpe.getMaximumPoolSize();
} else {
return -1;
}
}