Skip to content

Commit

Permalink
fix syntax error in BL provider;
Browse files Browse the repository at this point in the history
  • Loading branch information
jclausen committed Jan 12, 2025
1 parent 10d435b commit 47b9805
Showing 1 changed file with 9 additions and 18 deletions.
27 changes: 9 additions & 18 deletions system/cache/providers/BoxLangProvider.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -118,24 +118,15 @@ component
*/
struct function getStoreMetadataKeyMap(){
return {
"cacheName",
"cacheName",
"hits",
"hits",
"timeout",
"timeout",
"lastAccessTimeout",
"lastAccessTimeout",
"created",
"created",
"lastAccessed",
"lastAccessed",
"metadata",
"metadata",
"key",
"key",
"isEternal",
"isEternal"
cacheName : "cacheName",
hits : "hits",
timeout : "timeout",
lastAccessTimeout : "lastAccessTimeout",
created : "created",
lastAccessed : "lastAccessed",
metadata : "metadata",
key : "key",
isEternal : "isEternal"
};
}

Expand Down

0 comments on commit 47b9805

Please sign in to comment.