Skip to content
Snippets Groups Projects
Commit 7410c783 authored by esaunders's avatar esaunders
Browse files

Merge branch 'develop' of github.com:sleuthkit/sleuthkit into develop

parents ec5073da 89d347a9
No related branches found
No related tags found
No related merge requests found
...@@ -322,14 +322,13 @@ BaseTypes.customTypes.name=Custom Types ...@@ -322,14 +322,13 @@ BaseTypes.customTypes.name=Custom Types
EventTypeHierarchyLevel.root=Root EventTypeHierarchyLevel.root=Root
EventTypeHierarchyLevel.category=Category EventTypeHierarchyLevel.category=Category
EventTypeHierarchyLevel.event=Event EventTypeHierarchyLevel.event=Event
DataSourcesFilter.displayName.text=Data Source DataSourcesFilter.displayName.text=Limit data sources
DescriptionFilter.mode.exclude=Exclude DescriptionFilter.mode.exclude=Exclude
DescriptionFilter.mode.include=Include DescriptionFilter.mode.include=Include
hashHitsFilter.displayName.text=Hash Hits Only hashHitsFilter.displayName.text=Must have hash hit
hideKnownFilter.displayName.text=Hide Known Files hideKnownFilter.displayName.text=Hide Known Files
# {0} - sub filter displaynames
IntersectionFilter.displayName.text=Intersection IntersectionFilter.displayName.text=Intersection
tagsFilter.displayName.text=Tagged Items Only tagsFilter.displayName.text=Must be tagged
TextFilter.displayName.text=Text Filter TextFilter.displayName.text=Must include text:
TypeFilter.displayName.text=Event Type TypeFilter.displayName.text=Limit event types
FileTypesFilter.displayName.text=File Types FileTypesFilter.displayName.text=Limit file types
\ No newline at end of file \ No newline at end of file
...@@ -1000,7 +1000,6 @@ public FileTypesFilter copyOf() { ...@@ -1000,7 +1000,6 @@ public FileTypesFilter copyOf() {
@Override @Override
public String getDisplayName() { public String getDisplayName() {
return BundleProvider.getBundle().getString("FileTypesFilter.displayName.text"); return BundleProvider.getBundle().getString("FileTypesFilter.displayName.text");
} }
} }
......
...@@ -512,7 +512,7 @@ public BlackboardArtifact addMessage(String messageType, ...@@ -512,7 +512,7 @@ public BlackboardArtifact addMessage(String messageType,
} }
// set recipient attribute and create recipient accounts // set recipient attribute and create recipient accounts
List<AccountFileInstance> recipientAccountsList = new ArrayList(); List<AccountFileInstance> recipientAccountsList = new ArrayList<>();
String recipientsStr = ""; String recipientsStr = "";
if (recipientIdsList != null) { if (recipientIdsList != null) {
for (String recipient : recipientIdsList) { for (String recipient : recipientIdsList) {
...@@ -712,7 +712,7 @@ public BlackboardArtifact addCalllog(CommunicationDirection direction, ...@@ -712,7 +712,7 @@ public BlackboardArtifact addCalllog(CommunicationDirection direction,
} }
// Create a comma separated string of callee // Create a comma separated string of callee
List<AccountFileInstance> recipientAccountsList = new ArrayList(); List<AccountFileInstance> recipientAccountsList = new ArrayList<>();
String calleesStr = ""; String calleesStr = "";
if (!isEffectivelyEmpty(calleeIdsList)) { if (!isEffectivelyEmpty(calleeIdsList)) {
calleesStr = addressListToString(calleeIdsList); calleesStr = addressListToString(calleeIdsList);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment