Skip to content

Commit 5eef8a2

Browse files
Merge remote-tracking branch 'origin/main' into feature/SIDE-1189-fix-dependabot-security-issues
2 parents e585b05 + 5a51d3c commit 5eef8a2

File tree

1 file changed

+2
-2
lines changed
  • ldk/csharp/OliveHelpsLDK/OliveHelpsLDK

1 file changed

+2
-2
lines changed

ldk/csharp/OliveHelpsLDK/OliveHelpsLDK/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ namespace Console {
4848
}
4949

5050
class Loop : ILoop {
51-
public ILogger Logger { get; set; }
51+
public ILogger Logger { get; set; };
5252
private IStreamingCall<string> Stream { get; set; };
5353

5454
public Task Start(ILoopServices services) {
55-
Stream = services.Clipboard().Stream();
55+
Stream = services.Clipboard.Stream();
5656
Task.Run(async () => {
5757
while (await Stream.MoveNext()) {
5858
Logger.Info($"Received Clipboard Event {Stream.Current()}");

0 commit comments

Comments
 (0)