Changeset 782

Show
Ignore:
Timestamp:
05/12/2008 07:41:17 PM (14 months ago)
Author:
peterfarrell
Message:

- Missed a couple of placed where UUID was typed

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • framework/1-6-0/trunk/framework/CacheManager.cfc

    r781 r782  
    191191        <cffunction name="getCacheHandler" access="public" returntype="MachII.framework.CacheHandler" output="false" 
    192192                hint="Gets a cache handler by handlerId."> 
    193                 <cfargument name="handlerId" type="uuid" required="true" 
     193                <cfargument name="handlerId" type="string" required="true" 
    194194                        hint="Handler id of the cache handler you want to get." /> 
    195195                <cfreturn variables.handlers[arguments.handlerId] /> 
     
    231231        <cffunction name="isCacheHandlerDefined" access="public" returntype="boolean" output="false" 
    232232                hint="Checks if a cache handler is defined."> 
    233                 <cfargument name="handlerId" type="uuid" required="true"  
     233                <cfargument name="handlerId" type="string" required="true"  
    234234                        hint="Handler id of the cache handler you want to check." /> 
    235235                <cfreturn StructKeyExists(variables.handlers, arguments.handlerId) />