]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/concurrency/messaging/messaging.factor
basis: removing unnecessary method stack effects.
[factor.git] / basis / concurrency / messaging / messaging.factor
index 5f2a3fd5d852e88e9643e925325edf2e980853fb..8763c83ae16b9efebc89df1c18034ae10fad84a1 100644 (file)
@@ -13,7 +13,7 @@ M: thread mailbox-of
     [ { mailbox } declare ]
     [ <mailbox> [ >>mailbox drop ] keep ] ?if ; inline
 
-M: thread send ( message thread -- )
+M: thread send
     mailbox-of mailbox-put ;
 
 : my-mailbox ( -- mailbox ) self mailbox-of ; inline