File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
grails-scaffolding/src/main/groovy/grails/plugin/scaffolding Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -212,7 +212,7 @@ class ScaffoldingViewResolver extends GroovyPageViewResolver implements Resource
212212 Class controllerClazz = controllerClass. clazz
213213 if (scaffoldValueCache. containsKey(controllerClazz)) {
214214 Object cached = scaffoldValueCache. get(controllerClazz)
215- return cached == NULL_SCAFFOLD_VALUE ? null : cached
215+ return cached == NULL_SCAFFOLD_VALUE ? null : cached
216216 }
217217
218218 def scaffoldValue = controllerClass. getPropertyValue(' scaffold' )
@@ -225,7 +225,7 @@ class ScaffoldingViewResolver extends GroovyPageViewResolver implements Resource
225225 }
226226
227227 // Cache the result (even if null, to avoid repeated lookups)
228- scaffoldValueCache. put(controllerClazz, scaffoldValue == null ? NULL_SCAFFOLD_VALUE : scaffoldValue)
228+ scaffoldValueCache. put(controllerClazz, scaffoldValue == null ? NULL_SCAFFOLD_VALUE : scaffoldValue)
229229 return scaffoldValue
230230 }
231231
You can’t perform that action at this time.
0 commit comments