diff options
author | Colin Okay <colin@cicadas.surf> | 2022-10-23 11:16:44 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-10-23 11:16:44 -0500 |
commit | b03cc3553f0db3ef6fb1da52c61635cf3a51bdb4 (patch) | |
tree | e692d111103c12d6ba635fb7285062e491b19fa0 | |
parent | db6d9cf0dc158e2175d91b90f203995f86d545eb (diff) |
Remove: initialze-instance :after for content
-rw-r--r-- | vampire.lisp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/vampire.lisp b/vampire.lisp index 7ad9b63..33c1ab2 100644 --- a/vampire.lisp +++ b/vampire.lisp @@ -30,12 +30,6 @@ :index-type hash-index :index-reader content-by-user))) -(defmethod initialize-instance :after ((content content) &key) - (when (zerop (length (content-title content))) - (setf (content-title content) (format nil "~a-~a" - (class-of content) - (store-object-id content))))) - (defclass/bknr playlist (content) ((tracks editors :with :std (list)))) |