Skip to content

Commit

Permalink
fix brace styling (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
russcam authored Oct 28, 2023
1 parent 0b3bbb6 commit 96128a6
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 153 deletions.
3 changes: 2 additions & 1 deletion Qdrant.sln.DotSettings
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:Boolean x:Key="/Default/UserDictionary/Words/=HNSW/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=Qdrant/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
<s:Boolean x:Key="/Default/UserDictionary/Words/=Qdrant/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
<s:Boolean x:Key="/Default/UserDictionary/Words/=upserted/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
2 changes: 1 addition & 1 deletion src/Qdrant.Client/CertificateValidation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public static class CertificateValidation
public static Func<HttpRequestMessage, X509Certificate2?, X509Chain?, SslPolicyErrors, bool> Thumbprint(string thumbprint)
{
var normalizedThumbprint = NormalizeThumbprint(thumbprint);
return (message, certificate, chain, policyErrors) =>
return (_, certificate, chain, _) =>
{
if (chain is not null)
{
Expand Down
2 changes: 0 additions & 2 deletions src/Qdrant.Client/Grpc/QdrantGrpcClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,7 @@ protected QdrantGrpcClient() : this(new UnimplementedCallInvoker())
public void Dispose()
{
if (_isDisposed)
{
return;
}

_ownedChannel?.Dispose();
_isDisposed = true;
Expand Down
Loading

0 comments on commit 96128a6

Please sign in to comment.