module Roda::RodaPlugins::Render::ClassMethods
def freeze
If using compiled methods and there is an optimized layout, speed up
def freeze begin _freeze_layout_method rescue # This is only for optimization, if any errors occur, they can be ignored. # One possibility for error is the app doesn't use a layout, but doesn't # specifically set the :layout=>false plugin option. nil end super end