From ff8bc0f44672ce7f209e9eb23c2462efac2279d6 Mon Sep 17 00:00:00 2001 From: Raman Date: Thu, 2 Nov 2017 09:25:53 -0400 Subject: [PATCH] Fix typo. --- .../org/sleuthkit/autopsy/communications/FiltersPanel.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/communications/FiltersPanel.java b/Core/src/org/sleuthkit/autopsy/communications/FiltersPanel.java index dea43916a7..5058dce36a 100644 --- a/Core/src/org/sleuthkit/autopsy/communications/FiltersPanel.java +++ b/Core/src/org/sleuthkit/autopsy/communications/FiltersPanel.java @@ -301,7 +301,7 @@ final public class FiltersPanel extends javax.swing.JPanel { try { List accountDeviceInstances = new ArrayList<>(); CommunicationsFilter commsFilter = new CommunicationsFilter(); - commsFilter.addAndFilter(getDevceFilter()); + commsFilter.addAndFilter(getDeviceFilter()); commsFilter.addAndFilter(getAccountTypeFilter()); final CommunicationsManager communicationsManager = Case.getCurrentCase().getSleuthkitCase().getCommunicationsManager(); @@ -318,7 +318,7 @@ final public class FiltersPanel extends javax.swing.JPanel { } }//GEN-LAST:event_applyFiltersButtonActionPerformed - private DeviceFilter getDevceFilter() { + private DeviceFilter getDeviceFilter() { DeviceFilter deviceFilter = new DeviceFilter(devicesMap.entrySet().stream() .filter(entry -> entry.getValue().isSelected()) .map(Entry::getKey).collect(Collectors.toSet()));