Skip to content

Commit 42b9364

Browse files
committed
warnings removed
1 parent e043946 commit 42b9364

File tree

5 files changed

+35
-1
lines changed

5 files changed

+35
-1
lines changed

Source/lib/aztec/AztecDetectorResult.cs

+9
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,15 @@ public AztecDetectorResult(BitMatrix bits,
6262
{
6363
}
6464

65+
/// <summary>
66+
/// Initializes a new instance of the <see cref="AztecDetectorResult"/> class.
67+
/// </summary>
68+
/// <param name="bits">The bits.</param>
69+
/// <param name="points">The points.</param>
70+
/// <param name="compact">if set to <c>true</c> [compact].</param>
71+
/// <param name="nbDatablocks">The nb datablocks.</param>
72+
/// <param name="nbLayers">The nb layers.</param>
73+
/// <param name="errorsCorrected"></param>
6574
public AztecDetectorResult(BitMatrix bits,
6675
ResultPoint[] points,
6776
bool compact,

Source/lib/common/StringUtils.cs

+6
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,13 @@ public static class StringUtils
5252
/// </summary>
5353
public static readonly Encoding ISO88591_ENCODING;
5454
private static readonly bool ASSUME_SHIFT_JIS;
55+
/// <summary>
56+
/// JIS_IS is supported or not
57+
/// </summary>
5558
public static readonly bool JIS_IS_SUPPORTED;
59+
/// <summary>
60+
/// EUC_JP is supported or not
61+
/// </summary>
5662
public static readonly bool EUC_JP_IS_SUPPORTED;
5763

5864
// Retained for ABI compatibility with earlier versions

Source/lib/pdf417/detector/Detector.cs

+1
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,7 @@ private static void copyToResult(ResultPoint[] result, ResultPoint[] tmpResult,
274274
/// <param name="width">Width.</param>
275275
/// <param name="startRow">Start row.</param>
276276
/// <param name="startColumn">Start column.</param>
277+
/// <param name="minHeight"></param>
277278
/// <param name="pattern">Pattern.</param>
278279
private static ResultPoint[] findRowsWithPattern(
279280
BitMatrix matrix,

Source/lib/qrcode/QRCodeWriter.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public BitMatrix encode(String contents,
138138
/// same to be compliant with the provided dimensions.
139139
///
140140
/// <p>If no scaling is required, both {@code width} and {@code height}
141-
/// arguments should be non-positive numbers.
141+
/// arguments should be non-positive numbers.</p>
142142
/// </summary>
143143
/// <param name="code">{@code QRCode} to be adapted as a {@code BitMatrix}</param>
144144
/// <param name="width">desired width for the {@code QRCode} (in pixel units)</param>

Source/lib/renderer/StringRenderer.cs

+18
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,24 @@ public class StringRenderer : IBarcodeRenderer<string>
3030
/// <summary> Background/blank Char. </summary>
3131
public Char Background { get; set; } = ' ';
3232

33+
/// <summary>
34+
///
35+
/// </summary>
36+
/// <param name="matrix"></param>
37+
/// <param name="format"></param>
38+
/// <param name="content"></param>
39+
/// <returns></returns>
3340
[System.CLSCompliant(false)]
3441
public string Render(BitMatrix matrix, BarcodeFormat format, string content) => Render(matrix, format, content, null);
3542

43+
/// <summary>
44+
///
45+
/// </summary>
46+
/// <param name="matrix"></param>
47+
/// <param name="format"></param>
48+
/// <param name="content"></param>
49+
/// <param name="options"></param>
50+
/// <returns></returns>
3651
[System.CLSCompliant(false)]
3752
public string Render(BitMatrix matrix, BarcodeFormat format, string content, EncodingOptions options)
3853
{
@@ -54,6 +69,9 @@ public string Render(BitMatrix matrix, BarcodeFormat format, string content, Enc
5469
return new string(matrixTxt);
5570
}
5671

72+
/// <summary>
73+
/// get or set the string which should be used for line breaks
74+
/// </summary>
5775
public string LineFeed { get; set; } = "\n";
5876
}
5977
}

0 commit comments

Comments
 (0)