Changeset 782
- Timestamp:
- 05/12/2008 07:41:17 PM (14 months ago)
- Files:
-
- 1 modified
-
framework/1-6-0/trunk/framework/CacheManager.cfc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
framework/1-6-0/trunk/framework/CacheManager.cfc
r781 r782 191 191 <cffunction name="getCacheHandler" access="public" returntype="MachII.framework.CacheHandler" output="false" 192 192 hint="Gets a cache handler by handlerId."> 193 <cfargument name="handlerId" type=" uuid" required="true"193 <cfargument name="handlerId" type="string" required="true" 194 194 hint="Handler id of the cache handler you want to get." /> 195 195 <cfreturn variables.handlers[arguments.handlerId] /> … … 231 231 <cffunction name="isCacheHandlerDefined" access="public" returntype="boolean" output="false" 232 232 hint="Checks if a cache handler is defined."> 233 <cfargument name="handlerId" type=" uuid" required="true"233 <cfargument name="handlerId" type="string" required="true" 234 234 hint="Handler id of the cache handler you want to check." /> 235 235 <cfreturn StructKeyExists(variables.handlers, arguments.handlerId) />
