diff --git a/bindings/java/src/org/sleuthkit/datamodel/blackboardutils/CommunicationArtifactsHelper.java b/bindings/java/src/org/sleuthkit/datamodel/blackboardutils/CommunicationArtifactsHelper.java
index 7aefe077260c9d6fc8abc4ddb87fa503131978c7..8988d0e021758784429e5d356a6af01f980ca8e5 100644
--- a/bindings/java/src/org/sleuthkit/datamodel/blackboardutils/CommunicationArtifactsHelper.java
+++ b/bindings/java/src/org/sleuthkit/datamodel/blackboardutils/CommunicationArtifactsHelper.java
@@ -731,8 +731,8 @@ public BlackboardArtifact addCalllog(CommunicationDirection direction,
 		} else {
 			// For incoming call, if no callee specified, assume self account is callee
 			if (direction == CommunicationDirection.INCOMING) {
-				addAttributeIfNotNull(ATTRIBUTE_TYPE.TSK_PHONE_NUMBER_TO, this.selfAccountInstance.getAccount().getTypeSpecificID(), attributes);
-				recipientAccountsList.add(this.getSelfAccountInstance());
+				addAttributeIfNotNull(ATTRIBUTE_TYPE.TSK_PHONE_NUMBER_TO, getSelfAccountInstance().getAccount().getTypeSpecificID(), attributes);
+				recipientAccountsList.add(getSelfAccountInstance());
 			} else { // outgoing call without any callee
 				throw new IllegalArgumentException("Callee not provided for an outgoing call.");
 			}