Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/WireMock.Net/Server/WireMockServer.LogEntries.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ public event NotifyCollectionChangedEventHandler LogEntriesChanged
[PublicAPI]
public IReadOnlyList<ILogEntry> LogEntries => _options.LogEntries.ToArray();


/// <inheritdoc />
[PublicAPI]
public IReadOnlyList<ILogEntry> FindLogEntries(params IRequestMatcher[] matchers)
Expand Down
8 changes: 8 additions & 0 deletions src/WireMock.Net/Util/ConcurrentObservableCollection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,12 @@
return Items.ToList();
}
}

public T[] ToArray()

Check warning on line 88 in src/WireMock.Net/Util/ConcurrentObservableCollection.cs

View check run for this annotation

Codecov / codecov/patch

src/WireMock.Net/Util/ConcurrentObservableCollection.cs#L87-L88

Added lines #L87 - L88 were not covered by tests
{
lock (_lockObject)
{
return Items.ToArray();
}
}
}
Loading