Navigation Menu

Skip to content

Commit

Permalink
PRESIDECMS-1596 upgrade to latest Coldbox minor release and patches
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicWatson committed Jun 11, 2019
1 parent f3e51f0 commit 9db18d7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion box.json
Expand Up @@ -33,7 +33,7 @@
"cbmessagebox":"2.2.0+10",
"cbstorages":"1.3.0+14",
"cbjavaloader":"1.5.0+35",
"coldbox":"5.3.0+837"
"coldbox":"5.4.0"
},
"devDependencies":{
"testbox":"2.7.0"
Expand Down
12 changes: 6 additions & 6 deletions system/coldboxModifications/cachebox/CacheProvider.cfc
Expand Up @@ -17,7 +17,7 @@ component output=false extends="coldbox.system.cache.providers.CacheBoxColdBoxPr
return result;
}

public any function clearQuiet( required any objectKey ) output=false {
public boolean function clearQuiet( required any objectKey ) output=false {
request[ _requestKey ] = request[ _requestKey ] ?: {};
request[ _requestKey ].delete( arguments.objectKey );

Expand All @@ -39,11 +39,11 @@ component output=false extends="coldbox.system.cache.providers.CacheBoxColdBoxPr
}

public any function set(
required any objectKey
, required any object
, any timeout = ""
, any lastAccessTimeout = ""
, any extra = {}
required any objectKey
, required any object
, any timeout = ""
, any lastAccessTimeout = ""
, struct extra = {}
) {
setQuiet( arguments.objectKey, arguments.object, arguments.timeout, arguments.lastAccessTimeout );

Expand Down

0 comments on commit 9db18d7

Please sign in to comment.