4943 address codacy complaints

This commit is contained in:
William Schaefer 2019-04-12 10:47:23 -04:00
parent 9d5aa7fc63
commit 616fa54840
2 changed files with 4 additions and 1 deletions

View File

@ -92,7 +92,7 @@ class FileReportText implements FileReportModule {
output = new StringBuilder();
Iterator<String> it = list.iterator();
while (it.hasNext()) {
output.append("\"").append(it.next()).append("\"").append((it.hasNext() ? delimiter : System.lineSeparator()));
output.append('"').append(it.next()).append('"').append((it.hasNext() ? delimiter : System.lineSeparator()));
}
return output.toString();
}

View File

@ -18,6 +18,9 @@
*/
package org.sleuthkit.autopsy.report;
/**
* Panel for configuring settings for the file text report
*/
class ReportFileTextConfigurationPanel extends javax.swing.JPanel {
private static final long serialVersionUID = 1L;