mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-20 03:24:55 +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();
|
output = new StringBuilder();
|
||||||
Iterator<String> it = list.iterator();
|
Iterator<String> it = list.iterator();
|
||||||
while (it.hasNext()) {
|
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();
|
return output.toString();
|
||||||
}
|
}
|
||||||
|
@ -18,6 +18,9 @@
|
|||||||
*/
|
*/
|
||||||
package org.sleuthkit.autopsy.report;
|
package org.sleuthkit.autopsy.report;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Panel for configuring settings for the file text report
|
||||||
|
*/
|
||||||
class ReportFileTextConfigurationPanel extends javax.swing.JPanel {
|
class ReportFileTextConfigurationPanel extends javax.swing.JPanel {
|
||||||
|
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user