This is an automated email from the ASF dual-hosted git repository. gk pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/turbine-fulcrum-pool.git
commit 145f0c6232db151da615d3000515e82a07496600 Author: Thomas Vandahl <[email protected]> AuthorDate: Sun Jun 22 09:37:21 2008 +0000 Major code cleanup, formatting and styling, warnings removed git-svn-id: https://svn.apache.org/repos/asf/turbine/fulcrum/trunk/pool@670330 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/fulcrum/pool/DefaultPoolService.java | 10 +++------- .../org/apache/fulcrum/pool/ObjectInputStreamForContext.java | 2 +- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/src/java/org/apache/fulcrum/pool/DefaultPoolService.java b/src/java/org/apache/fulcrum/pool/DefaultPoolService.java index 421ffda..ce3adcc 100644 --- a/src/java/org/apache/fulcrum/pool/DefaultPoolService.java +++ b/src/java/org/apache/fulcrum/pool/DefaultPoolService.java @@ -286,12 +286,7 @@ public class DefaultPoolService extends AbstractLogEnabled implements PoolServic private Map capacityMap; private FactoryService factoryService; private ServiceManager manager; - /** - * Constructs a Pool Service. - */ - public DefaultPoolService() - { - } + /** * Gets an instance of a named class either from the pool * or by calling the Factory Service if the pool is empty. @@ -568,10 +563,11 @@ public class DefaultPoolService extends AbstractLogEnabled implements PoolServic * * @return the factory service. */ - private FactoryService getFactory() + protected FactoryService getFactory() { return factoryService; } + // ---------------- Avalon Lifecycle Methods --------------------- /** * Avalon component lifecycle method diff --git a/src/java/org/apache/fulcrum/pool/ObjectInputStreamForContext.java b/src/java/org/apache/fulcrum/pool/ObjectInputStreamForContext.java index 9683ffe..00a07c1 100644 --- a/src/java/org/apache/fulcrum/pool/ObjectInputStreamForContext.java +++ b/src/java/org/apache/fulcrum/pool/ObjectInputStreamForContext.java @@ -39,10 +39,10 @@ public class ObjectInputStreamForContext extends ObjectInputStream */ private ClassLoader classLoader; - // this is to make the proxy happy. public ObjectInputStreamForContext() throws IOException { + // this is to make the proxy happy. } /**
