From fdb725188c20e3a61723a43cef7b9feb3a3127cd Mon Sep 17 00:00:00 2001 From: "U-BASIS\\dgrove" Date: Thu, 10 May 2018 11:43:17 -0400 Subject: [PATCH] Fixed Codacy issue with appending String literals. --- .../EncryptionDetectionDataSourceIngestModule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/modules/encryptiondetection/EncryptionDetectionDataSourceIngestModule.java b/Core/src/org/sleuthkit/autopsy/modules/encryptiondetection/EncryptionDetectionDataSourceIngestModule.java index a1587a48cd..7782357471 100644 --- a/Core/src/org/sleuthkit/autopsy/modules/encryptiondetection/EncryptionDetectionDataSourceIngestModule.java +++ b/Core/src/org/sleuthkit/autopsy/modules/encryptiondetection/EncryptionDetectionDataSourceIngestModule.java @@ -148,7 +148,7 @@ final class EncryptionDetectionDataSourceIngestModule implements DataSourceInges StringBuilder detailsSb = new StringBuilder(""); detailsSb.append("File: ").append(volume.getParent().getUniquePath()).append(volume.getName()); if (artifactType.equals(BlackboardArtifact.ARTIFACT_TYPE.TSK_ENCRYPTION_SUSPECTED)) { - detailsSb.append("
\n").append("Entropy: ").append(calculatedEntropy); + detailsSb.append("
\nEntropy: ").append(calculatedEntropy); } services.postMessage(IngestMessage.createDataMessage(EncryptionDetectionModuleFactory.getModuleName(),