Changeset 322
- Timestamp:
- 03/07/08 09:48:16 (2 months ago)
- Files:
-
- 1 modified
-
trunk/ModelGlue/unity/controller/Controller.cfc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ModelGlue/unity/controller/Controller.cfc
r177 r322 59 59 </cffunction> 60 60 61 <cffunction name="RemoveFromCache" access="public" returnType=" boolean" output="false">61 <cffunction name="RemoveFromCache" access="public" returnType="void" output="false"> 62 62 <cfargument name="name" type="string" required="true" hint="I am the name of the value."> 63 63 64 <cf returnvariables.ModelGlue.ModelGlueCache.removeValue(arguments.name) />64 <cfset variables.ModelGlue.ModelGlueCache.removeValue(arguments.name) /> 65 65 </cffunction> 66 66
