diff --git a/src/net/java/sip/communicator/impl/gui/main/call/CallComboBox.java b/src/net/java/sip/communicator/impl/gui/main/call/CallComboBox.java index a69ef2f3f..0c1ec32be 100644 --- a/src/net/java/sip/communicator/impl/gui/main/call/CallComboBox.java +++ b/src/net/java/sip/communicator/impl/gui/main/call/CallComboBox.java @@ -197,19 +197,16 @@ public void run() for (CallRecord call : historyCalls) { - List callPeerRecords - = call.getPeerRecords(); + List callPeerRecords = call.getPeerRecords(); - //extract all call participants for that call. - for (CallPeerRecord cpRecord - : callPeerRecords) + //extract all call peers for that call. + for (CallPeerRecord cpRecord : callPeerRecords) { - String participant = cpRecord.getPeerAddress(); + String peer = cpRecord.getPeerAddress(); - if(!callComboModel.contains(participant)) + if(!callComboModel.contains(peer)) { - callComboModel - .addElement(participant); + callComboModel.addElement(peer); } } }