Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mickael Gobbo committed Oct 31, 2024
1 parent 7d2f96f commit f3f1355
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -675,9 +675,9 @@ public LogData<T> removeDuplicatedEntries(List<String> keyList) {
//based on the key list
for (String key : keyList) {
filterConditions.put(key, Matchers.equalTo(
(String) v.getValuesMap().get(key) != null ?
(String) v.getValuesMap().get(key) :
(String) v.get(key)));
v.getValuesMap().get(key) != null ?
v.getValuesMap().get(key) :
v.get(key)));
}

if (!lr_filteredLogData.isEntryPresent(filterConditions)) {
Expand Down

0 comments on commit f3f1355

Please sign in to comment.