1
0
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:
William Schaefer
2017-02-14 16:50:01 -05:00

View File

@@ -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];