Skip to content

NH-4092 - AsyncGenerator creates unused private static event handler in SQLite20Driver #712

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 12, 2017
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
2 changes: 1 addition & 1 deletion Tools/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
<package id="NUnit.Extension.NUnitV2ResultWriter" version="3.6.0" targetFramework="net461" />
<package id="NUnit.Extension.TeamCityEventListener" version="1.0.2" targetFramework="net461" />
<package id="NUnit.Extension.VSProjectLoader" version="3.6.0" targetFramework="net461" />
<package id="CSharpAsyncGenerator.CommandLine" version="0.5.0" targetFramework="net461" />
<package id="CSharpAsyncGenerator.CommandLine" version="0.5.1" targetFramework="net461" />
<package id="vswhere" version="2.1.4" targetFramework="net461" />
</packages>
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public Task OnPostUpdateAsync(PostUpdateEvent @event, CancellationToken cancella
}

[TestFixture]
public partial class DisposableListenersTestAsync
public class DisposableListenersTestAsync
{
[Test]
public async Task WhenCloseSessionFactoryThenCallDisposeOfListenerAsync()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
using System.Data.Common;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using NHibernate.AdoNet;
using NHibernate.Cfg;
using NHibernate.Dialect;
Expand Down
70 changes: 0 additions & 70 deletions src/NHibernate.Test/Async/Linq/CharComparisonTests.cs

This file was deleted.

41 changes: 0 additions & 41 deletions src/NHibernate.Test/Async/NHSpecificTest/NH1864/Fixture.cs

This file was deleted.

78 changes: 0 additions & 78 deletions src/NHibernate.Test/Async/NHSpecificTest/NH1927/Fixture.cs

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace NHibernate.Test.Tools.hbm2ddl.SchemaExportTests
{
using System.Threading.Tasks;
[TestFixture]
public partial class ExportToFileFixtureAsync
public class ExportToFileFixtureAsync
{
[Test]
public async Task ExportToFileUsingSetOutputFileAndCreateAsync()
Expand Down
2 changes: 1 addition & 1 deletion src/NHibernate.Test/Events/DisposableListenersTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public void Dispose()
}

[TestFixture]
public partial class DisposableListenersTest
public class DisposableListenersTest
{
[Test]
public void WhenCloseSessionFactoryThenCallDisposeOfListener()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using System.Data.Common;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using NHibernate.AdoNet;
using NHibernate.Cfg;
using NHibernate.Dialect;
Expand Down
4 changes: 1 addition & 3 deletions src/NHibernate.Test/NHSpecificTest/NH1159/Contact.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
using System;
using System.Collections.Generic;
using System.Text;

namespace NHibernate.Test.NHSpecificTest.NH1159
{
[Serializable]
public partial class Contact
public class Contact
{

private bool isChanged;
Expand Down
4 changes: 1 addition & 3 deletions src/NHibernate.Test/NHSpecificTest/NH1159/ContactTitle.cs
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;

namespace NHibernate.Test.NHSpecificTest.NH1159
{
/// <summary>
/// Generated by MyGeneration using the NHibernate Object Mapping template
/// </summary>
[Serializable]
public partial class ContactTitle
public class ContactTitle
{

#region Private Members
Expand Down
2 changes: 1 addition & 1 deletion src/NHibernate.Test/NHSpecificTest/NH3985/Entity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace NHibernate.Test.NHSpecificTest.NH3985
{
public partial class Process
public class Process
{
public virtual Guid ProcessID { get; set; }
public virtual string Name { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace NHibernate.Test.Tools.hbm2ddl.SchemaExportTests
{
[TestFixture]
public partial class ExportToFileFixture
public class ExportToFileFixture
{
[Test]
public void ExportToFileUsingSetOutputFileAndCreate()
Expand Down
38 changes: 0 additions & 38 deletions src/NHibernate/Async/Driver/SQLite20Driver.cs

This file was deleted.

49 changes: 0 additions & 49 deletions src/NHibernate/Async/Tool/hbm2ddl/DatabaseMetadata.cs

This file was deleted.

Loading