mirror of
https://github.com/elisspace/autopsy.git
synced 2026-09-06 02:24:30 +00:00
Merge branch '2198-RunIngestModulesWizard' of https://github.com/wschaeferB/autopsy into 2199-ProfilesInAddDataWizard
This commit is contained in:
@@ -47,7 +47,7 @@ public final class IngestProfiles {
|
||||
public synchronized static List<IngestProfile> getIngestProfiles() {
|
||||
File dir = Paths.get(PlatformUtil.getUserConfigDirectory(), PROFILE_FOLDER).toFile();
|
||||
File[] directoryListing = dir.listFiles();
|
||||
List profileList = new ArrayList<>();
|
||||
List<IngestProfile> profileList = new ArrayList<>();
|
||||
if (directoryListing != null) {
|
||||
for (File child : directoryListing) {
|
||||
String name = child.getName().split("\\.")[0];
|
||||
|
||||
Reference in New Issue
Block a user