mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-14 17:06:16 +00:00
6354 Fixing errors + Codacy
This commit is contained in:
parent
fe23a400f4
commit
147d7535d1
@ -33,11 +33,11 @@ import org.openide.windows.WindowManager;
|
||||
public final class PersonaDetailsTopComponent extends TopComponent {
|
||||
|
||||
@Messages({
|
||||
"PTopComponent_Name=Persona Details"
|
||||
"PDTopComponent_Name=Persona Details"
|
||||
})
|
||||
public PersonaDetailsTopComponent() {
|
||||
initComponents();
|
||||
setName(Bundle.PTopComponent_Name());
|
||||
setName(Bundle.PDTopComponent_Name());
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -44,11 +44,11 @@ import org.sleuthkit.autopsy.centralrepository.datamodel.Persona;
|
||||
public final class PersonaSearchTopComponent extends TopComponent {
|
||||
|
||||
@Messages({
|
||||
"PTopComponent_Name=Persona Search"
|
||||
"PSTopComponent_Name=Persona Search"
|
||||
})
|
||||
public PersonaSearchTopComponent() {
|
||||
initComponents();
|
||||
setName(Bundle.PTopComponent_Name());
|
||||
setName(Bundle.PSTopComponent_Name());
|
||||
executeSearch();
|
||||
|
||||
searchBtn.addActionListener(new ActionListener() {
|
||||
@ -58,8 +58,12 @@ public final class PersonaSearchTopComponent extends TopComponent {
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Table model for the persona search results
|
||||
*/
|
||||
class PersonaFilterTableModel extends DefaultTableModel {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
PersonaFilterTableModel(Object[][] rows, String[] colNames) {
|
||||
super(rows, colNames);
|
||||
|
Loading…
x
Reference in New Issue
Block a user