diff --git a/models/AbstractStorage.cfc b/models/AbstractStorage.cfc index 9f808f9..b114f88 100644 --- a/models/AbstractStorage.cfc +++ b/models/AbstractStorage.cfc @@ -17,11 +17,14 @@ component accessors="true" serializable="false" { /** * Lock Name : If you want to lock the storage, you can provide a lock name */ - property name="lockName" type="string" default=""; + property + name ="lockName" + type ="string" + default=""; // Setup defaults variables.lockTimeout = 20; - variables.lockName = hash( now() ); + variables.lockName = hash( now() ); /** * Do a multi-set using a target structure of name-value pairs