diff --git a/src/net/java/sip/communicator/impl/protocol/jabber/OperationSetAutoAnswerJabberImpl.java b/src/net/java/sip/communicator/impl/protocol/jabber/OperationSetAutoAnswerJabberImpl.java index eabf25d51..88017f087 100644 --- a/src/net/java/sip/communicator/impl/protocol/jabber/OperationSetAutoAnswerJabberImpl.java +++ b/src/net/java/sip/communicator/impl/protocol/jabber/OperationSetAutoAnswerJabberImpl.java @@ -130,14 +130,14 @@ public void clear() * @return true if we have processed and no further processing is * needed, false otherwise. */ - boolean followCallCheck( - AbstractCall call) + boolean followCallCheck(AbstractCall call) { if(!answerUnconditional) return false; // we are here cause we satisfy the conditional, // or unconditional is true + @SuppressWarnings("unchecked") Iterator peers = call.getCallPeers(); while (peers.hasNext())