From 117868938164d59d720a8abc2d953a5c24475f44 Mon Sep 17 00:00:00 2001 From: mh Date: Wed, 20 Feb 2002 13:34:23 +0000 Subject: [PATCH] minor code cleanup. --- source/mircoders/producer/Producer.java | 3 ++- source/mircoders/producer/ProducerImages.java | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/source/mircoders/producer/Producer.java b/source/mircoders/producer/Producer.java index 93eb37a1..c8759582 100755 --- a/source/mircoders/producer/Producer.java +++ b/source/mircoders/producer/Producer.java @@ -86,7 +86,8 @@ abstract public class Producer { outputFile.close(); outStream.close(); - printHTML(htmlout, "Produced " + filename + ""); + printHTML(htmlout, "Produced " + filename + ""); //theLog.printInfo("Produced: " + producerStorageRoot + filename); //theLog.printDebugInfo("free mem:" + java.lang.Runtime.getRuntime().freeMemory()); //theLog.printDebugInfo("total mem:" + java.lang.Runtime.getRuntime().totalMemory()); diff --git a/source/mircoders/producer/ProducerImages.java b/source/mircoders/producer/ProducerImages.java index 45e59559..132c8d30 100755 --- a/source/mircoders/producer/ProducerImages.java +++ b/source/mircoders/producer/ProducerImages.java @@ -97,7 +97,9 @@ public class ProducerImages extends Producer { // if next batch get it... if (batchEntityList.hasNextBatch()){ - batchEntityList = imageModule.getByWhereClause(whereClause, null, batchEntityList.getNextBatch(),contentBatchsize); + batchEntityList = imageModule.getByWhereClause(whereClause, + null, batchEntityList.getNextBatch(), + contentBatchsize); } else { batchEntityList=null; } -- 2.11.0