Skip to content

Commit

Permalink
Fix some github warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
munan-geo committed Aug 13, 2024
1 parent 9c2ef7f commit 06c17b9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions src/AeroSharp/Connection/ClientProvider.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System.Linq;
using Aerospike.Client;
using Aerospike.Client;
using System.Linq;

namespace AeroSharp.Connection
{
Expand Down Expand Up @@ -39,6 +39,7 @@ public ClientWrapper GetClient()
}
}
}

Check warning on line 42 in src/AeroSharp/Connection/ClientProvider.cs

View workflow job for this annotation

GitHub Actions / integration

Check warning on line 42 in src/AeroSharp/Connection/ClientProvider.cs

View workflow job for this annotation

GitHub Actions / integration

Check warning on line 42 in src/AeroSharp/Connection/ClientProvider.cs

View workflow job for this annotation

GitHub Actions / unit

Check warning on line 42 in src/AeroSharp/Connection/ClientProvider.cs

View workflow job for this annotation

GitHub Actions / unit

return _client;
}

Expand Down
2 changes: 1 addition & 1 deletion src/AeroSharp/Connection/ClientWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ public ClientWrapper(IAsyncClient client)
Client = client;
}

public Node[] ClientNodes => Client.Nodes;
public Node[] ClientNodes => Client.Nodes;
}
}
4 changes: 2 additions & 2 deletions src/AeroSharp/Connection/ConnectionConfiguration.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;
using AeroSharp.Enums;
using System;
using System.Diagnostics.CodeAnalysis;
using AeroSharp.Enums;

namespace AeroSharp.Connection
{
Expand Down

0 comments on commit 06c17b9

Please sign in to comment.