Skip to content

Commit

Permalink
Updated doc
Browse files Browse the repository at this point in the history
  • Loading branch information
w3stling committed Aug 18, 2023
1 parent e0eb28f commit 3902184
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ Use an offline list of MICs and get all active MICs
```java
MicLookup lookup = MicLookup.getInstance(false);
List<Mic> mics = lookup.getAll()
.stream()
.filter(Mic::isActive)
.collect(Collectors.toList());
.stream()
.filter(Mic::isActive)
.collect(Collectors.toList());
```


Expand Down

0 comments on commit 3902184

Please sign in to comment.