Fixed typo for (fgLogger > logger) to make repo project compile

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@21372 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Erik Winlof
2010-07-23 07:17:24 +00:00
parent f1ca1b7f51
commit b7549ac874

View File

@@ -18,8 +18,8 @@
package org.alfresco.repo.avm;
import java.io.IOException;
import java.io.OutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collection;
@@ -396,15 +396,15 @@ public class AVMNodeService extends AbstractNodeServiceImpl implements NodeServi
else if (nodeTypeQName.equals(WCMModel.TYPE_AVM_PLAIN_CONTENT) ||
nodeTypeQName.equals(ContentModel.TYPE_CONTENT))
{
OutputStream os = fAVMService.createFile(avmPath, nodeName);
try
{
if (os != null) { os.close(); }
}
catch (IOException ioe)
{
fgLogger.warn("Failed to close output stream when creating file '"+AVMUtil.extendAVMPath(avmPath, nodeName)+"'"+ioe.getMessage());
}
OutputStream os = fAVMService.createFile(avmPath, nodeName);
try
{
if (os != null) { os.close(); }
}
catch (IOException ioe)
{
logger.warn("Failed to close output stream when creating file '"+AVMUtil.extendAVMPath(avmPath, nodeName)+"'"+ioe.getMessage());
}
}
else if (nodeTypeQName.equals(WCMModel.TYPE_AVM_LAYERED_CONTENT))
{