You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by fm...@apache.org on 2012/04/27 22:14:35 UTC

svn commit: r1331571 - /chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-inmemory/src/main/java/org/apache/chemistry/opencmis/inmemory/server/InMemoryServiceFactoryImpl.java

Author: fmui
Date: Fri Apr 27 20:14:35 2012
New Revision: 1331571

URL: http://svn.apache.org/viewvc?rev=1331571&view=rev
Log:
removed debug code

Modified:
    chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-inmemory/src/main/java/org/apache/chemistry/opencmis/inmemory/server/InMemoryServiceFactoryImpl.java

Modified: chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-inmemory/src/main/java/org/apache/chemistry/opencmis/inmemory/server/InMemoryServiceFactoryImpl.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-inmemory/src/main/java/org/apache/chemistry/opencmis/inmemory/server/InMemoryServiceFactoryImpl.java?rev=1331571&r1=1331570&r2=1331571&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-inmemory/src/main/java/org/apache/chemistry/opencmis/inmemory/server/InMemoryServiceFactoryImpl.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-inmemory/src/main/java/org/apache/chemistry/opencmis/inmemory/server/InMemoryServiceFactoryImpl.java Fri Apr 27 20:14:35 2012
@@ -87,7 +87,7 @@ public class InMemoryServiceFactoryImpl 
         LOG.info("Initializing in-memory repository...");
 
         System.out.println(parameters);
-        
+
         inMemoryServiceParameters = parameters;
         String overrideCtx = parameters.get(ConfigConstants.OVERRIDE_CALL_CONTEXT);
         if (null != overrideCtx) {
@@ -111,14 +111,10 @@ public class InMemoryServiceFactoryImpl 
         String memoryThresholdStr = parameters.get(ConfigConstants.MEMORY_THRESHOLD);
         memoryThreshold = (memoryThresholdStr == null ? super.getMemoryThreshold() : Integer
                 .parseInt(memoryThresholdStr));
-        
+
         String maxContentSizeStr = parameters.get(ConfigConstants.MAX_CONTENT_SIZE);
         maxContentSize = (maxContentSizeStr == null ? super.getMaxContentSize() : Long.parseLong(maxContentSizeStr));
 
-        System.out.println("maxSizeStr > " + maxContentSizeStr);
-        System.out.println("super.getMaxSize() > " + super.getMaxContentSize());
-        System.out.println("content > " + tempDir + " / " + memoryThreshold + " / " +  maxContentSize);
-        
         Date deploymentTime = new Date();
         String strDate = new SimpleDateFormat("EEE MMM dd hh:mm:ss a z yyyy", Locale.US).format(deploymentTime);