/[Apache-SVN]
ViewVC logotype

Revision 1210669


Jump to revision: Previous Next
Author: fmeschbe
Date: Mon Dec 5 22:14:50 2011 UTC (12 years, 5 months ago)
Changed paths: 2
Log Message:
SLING-2320 Apply slightly modified patch by Jeff Young (thanks alot).
The change is from

  if (maxRecursionLevels == 1) {
  	// some comment
  } else if (count > maxResources) {
    throw new RecursionTooDeepException(String.valueOf(currentLevel));
  }

to

  if (count > maxResources && maxRecursionLevels > 1) {
    throw new RecursionTooDeepException(String.valueOf(currentLevel));
  }

Changed paths

Path Details
Directorysling/trunk/bundles/servlets/get/src/main/java/org/apache/sling/servlets/get/impl/helpers/JsonRendererServlet.java modified , text changed
Directorysling/trunk/bundles/servlets/get/src/main/java/org/apache/sling/servlets/get/impl/helpers/ResourceTraversor.java modified , text changed

infrastructure at apache.org
ViewVC Help
Powered by ViewVC 1.1.26