Skip to content

Commit

Permalink
warning removed
Browse files Browse the repository at this point in the history
  • Loading branch information
micjahn committed Jan 24, 2022
1 parent 5281c19 commit e0c4f2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/lib/BarcodeReaderCustom.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ public class BarcodeReader<T> : BarcodeReaderGeneric, IBarcodeReader<T>
private readonly Func<T, LuminanceSource> createLuminanceSource;

/// <summary>
/// Initializes a new instance of the <see cref="BarcodeReader"/> class.
/// Initializes a new instance of the <see cref="BarcodeReader{T}"/> class.
/// </summary>
public BarcodeReader(Func<T, LuminanceSource> createLuminanceSource)
: this(null, createLuminanceSource, null)
{
}

/// <summary>
/// Initializes a new instance of the <see cref="BarcodeReader"/> class.
/// Initializes a new instance of the <see cref="BarcodeReader{T}"/> class.
/// </summary>
/// <param name="reader">Sets the reader which should be used to find and decode the barcode.
/// If null then MultiFormatReader is used</param>
Expand All @@ -51,7 +51,7 @@ Func<LuminanceSource, Binarizer> createBinarizer
}

/// <summary>
/// Initializes a new instance of the <see cref="BarcodeReader"/> class.
/// Initializes a new instance of the <see cref="BarcodeReader{T}"/> class.
/// </summary>
/// <param name="reader">Sets the reader which should be used to find and decode the barcode.
/// If null then MultiFormatReader is used</param>
Expand Down

0 comments on commit e0c4f2f

Please sign in to comment.