Skip to content

Commit

Permalink
V1.3.3, Fixed compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
VahidN committed Nov 24, 2017
1 parent 717de43 commit 7e68fb5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,11 @@ public override long Position
}
}

#if NETSTANDARD1_3
public void Close()
#else
public override void Close()
#endif
{
try
{
Expand Down
2 changes: 1 addition & 1 deletion src/iTextSharp.LGPLv2.Core/iTextSharp.LGPLv2.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description> iTextSharp.LGPLv2.Core is an unofficial port of the last LGPL version of the iTextSharp (V4.1.6) to .NET Core.</Description>
<VersionPrefix>1.3.2</VersionPrefix>
<VersionPrefix>1.3.3</VersionPrefix>
<LangVersion>latest</LangVersion>
<Authors>Vahid Nasiri</Authors>
<TargetFrameworks>netstandard1.3;netstandard2.0</TargetFrameworks>
Expand Down
4 changes: 4 additions & 0 deletions src/iTextSharp.LGPLv2.Core/iTextSharp/text/pdf/AcroFields.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2634,7 +2634,11 @@ public override long Position
}
}

#if NETSTANDARD1_3
public void Close()
#else
public override void Close()
#endif
{
if (!_closed)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,11 @@ public override long Position
}
}

#if NETSTANDARD1_3
public void Close()
#else
public override void Close()
#endif
{
Finish();
}
Expand Down

0 comments on commit 7e68fb5

Please sign in to comment.