mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-17 10:17:41 +00:00
4943 address codacy complaints
This commit is contained in:
parent
9d5aa7fc63
commit
616fa54840
@ -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();
|
||||
}
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user