Skip to content

Commit

Permalink
Merge pull request hashtagchris#4 from ProrepubliQ/RemoveDebugInfo
Browse files Browse the repository at this point in the history
Remove debug info
  • Loading branch information
vestervang authored Mar 15, 2022
2 parents 40c9a37 + 891b7fa commit 3dad794
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/DotNetBlueZ.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<!-- NuGet -->
<PropertyGroup>
<PackageId>ProrepubliQ.DotNetBlueZ</PackageId>
<Version>1.6.1</Version>
<Version>1.6.4</Version>
<Authors>Chris Sidi, Frederik Thomsen</Authors>
<Title>Quick and dirty library for BlueZ's D-Bus APIs</Title>
<Description>A quick and dirty library for BlueZ's D-Bus APIs. Focus is on Bluetooth Low Energy APIs.</Description>
Expand Down
4 changes: 2 additions & 2 deletions src/GattCharacteristic.cs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public event GattCharacteristicEventHandlerAsync Value
m_value += value;

// Subscribe here instead of CreateAsync, because not all GATT characteristics are notifable.
// Subscribe();
Subscribe();
}
remove => m_value -= value;
}
Expand All @@ -149,7 +149,7 @@ private async void Subscribe()

private void OnPropertyChanges(PropertyChanges changes)
{
Console.WriteLine("OnPropertyChanges called.");
// Console.WriteLine("OnPropertyChanges called.");
var test = m_value;
foreach (var pair in changes.Changed)
switch (pair.Key)
Expand Down

0 comments on commit 3dad794

Please sign in to comment.