Renaming local variable as suggested in review.

fix-message-formatting
Markus Kilås 12 years ago
parent 0702825ddd
commit adcee06b36

@ -244,18 +244,18 @@ private boolean constructCallInfo()
resources.getI18NString("service.gui.callinfo.CALL_TRANSPORT"),
preferredTransport.toString()));
final OperationSetTLS tlsDetails = aCall.getProtocolProvider()
final OperationSetTLS opSetTls = aCall.getProtocolProvider()
.getOperationSet(OperationSetTLS.class);
if (tlsDetails != null)
if (opSetTls != null)
{
stringBuffer.append(getLineString(
resources.getI18NString(
"service.gui.callinfo.TLS_PROTOCOL"),
tlsDetails.getProtocol()));
opSetTls.getProtocol()));
stringBuffer.append(getLineString(
resources.getI18NString(
"service.gui.callinfo.TLS_CIPHER_SUITE"),
tlsDetails.getCipherSuite()));
opSetTls.getCipherSuite()));
stringBuffer.append("<b><a href=\"")
.append(CERTIFICATE_URL)

Loading…
Cancel
Save