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