mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
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:
@@ -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))
|
||||
{
|
||||
|
Reference in New Issue
Block a user