Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,6 @@ public override object Get(DbDataReader rs, int index, ISessionImplementor sessi
return PrimitiveImmutableType.Get(value);
}

public override object Get(DbDataReader rs, string name, ISessionImplementor session)
{
var ordinal = rs.GetOrdinal(name);
return Get(rs, ordinal, session);
}

public override string Name => "PrimitiveImmutableType";

public override System.Type ReturnedClass => typeof(PrimitiveImmutableType);
Expand Down
4 changes: 0 additions & 4 deletions Src/NHibernate.Envers/Configuration/Fluent/FluentException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,5 @@ public FluentException(string message) : base(message)
public FluentException(string message, Exception inner) : base(message, inner)
{
}

protected FluentException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}
5 changes: 0 additions & 5 deletions Src/NHibernate.Envers/Exceptions/AuditException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,5 @@ public AuditException(string message, Exception innerException)
: base(message, innerException)
{
}

protected AuditException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}
2 changes: 1 addition & 1 deletion Src/NHibernate.Envers/NHibernate.Envers.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
<DebugType>Portable</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NHibernate" Version="[5.5.0, 5.6.0)" />
<PackageReference Include="NHibernate" Version="[5.6.0, 5.7.0)" />
</ItemGroup>
</Project>
Loading