Turned off, for now, because the current implementation is decidedly borked,

heuristic cycle checking.  This was causing the css not showing up in initial
previews of web pages, followed by showing up on one or more refreshes.  I am a 
prat.  The evidence is irrefutable.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@4084 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Britt Park
2006-10-09 21:49:07 +00:00
parent 446343b697
commit 21941d7385

View File

@@ -879,10 +879,10 @@ public class AVMRepository
{
fLookupCount.set(count + 1);
}
if (fLookupCount.get() > 50)
{
throw new AVMCycleException("Cycle in lookup.");
}
// if (fLookupCount.get() > 50)
// {
// throw new AVMCycleException("Cycle in lookup.");
// }
String [] pathParts = SplitPath(path);
AVMStore store = getAVMStoreByName(pathParts[0]);
if (store == null)
@@ -1129,10 +1129,10 @@ public class AVMRepository
*/
public Lookup lookupDirectory(int version, String path)
{
if (fLookupCount.get() > 50)
{
throw new AVMCycleException("Cycle in lookup.");
}
// if (fLookupCount.get() > 50)
// {
// throw new AVMCycleException("Cycle in lookup.");
// }
String [] pathParts = SplitPath(path);
AVMStore store = getAVMStoreByName(pathParts[0]);
if (store == null)