diff --git a/common/source/java/ch/systemsx/cisd/common/serviceconversation/client/IServiceConversation.java b/common/source/java/ch/systemsx/cisd/common/serviceconversation/client/IServiceConversation.java
index 1436393ae4c8e96da3c67ca3806c5abc5a138491..3e91dd451e5375e5e3de75f57ce9f66847c0f5be 100644
--- a/common/source/java/ch/systemsx/cisd/common/serviceconversation/client/IServiceConversation.java
+++ b/common/source/java/ch/systemsx/cisd/common/serviceconversation/client/IServiceConversation.java
@@ -17,7 +17,6 @@
 package ch.systemsx.cisd.common.serviceconversation.client;
 
 import java.io.Closeable;
-import java.io.Serializable;
 
 import ch.systemsx.cisd.common.serviceconversation.IServiceMessenger;
 
@@ -35,8 +34,7 @@ public interface IServiceConversation extends IServiceMessenger, Closeable
     public void terminate();
 
     /**
-     * Closes this messenger. Do not call {@link #send(Serializable)} or {@link #receive(Class)}
-     * after this call.
+     * Closes this messenger. Do not call any other method after this call.
      */
     public void close();
 }
\ No newline at end of file