Skip to content

Commit 40a6c98

Browse files
amedeeitext-teamcity
authored andcommitted
Remove empty @param and @return Javadoc tags
JELdoclet warns about these empty tags RND-457 Autoported commit. Original commit hash: [50298a580]
1 parent 1162e4b commit 40a6c98

File tree

4 files changed

+11
-15
lines changed

4 files changed

+11
-15
lines changed

itext/itext.kernel/itext/kernel/pdf/canvas/parser/listener/CharacterRenderInfo.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,19 +53,17 @@ public class CharacterRenderInfo : TextChunk {
5353

5454
/// <summary>
5555
/// This method converts a List<CharacterRenderInfo>
56-
/// The datastructure that gets returned contains both the plaintext,
56+
/// The data structure that gets returned contains both the plaintext,
5757
/// as well as the mapping of indices (from the list to the string).
5858
/// </summary>
5959
/// <remarks>
6060
/// This method converts a List<CharacterRenderInfo>
61-
/// The datastructure that gets returned contains both the plaintext,
61+
/// The data structure that gets returned contains both the plaintext,
6262
/// as well as the mapping of indices (from the list to the string).
6363
/// These indices can differ; if there is sufficient spacing between two CharacterRenderInfo
6464
/// objects, this algorithm will decide to insert space. The inserted space will cause
6565
/// the indices to differ by at least 1.
6666
/// </remarks>
67-
/// <param name="cris"/>
68-
/// <returns/>
6967
internal static CharacterRenderInfo.StringConversionInfo MapString(IList<iText.Kernel.Pdf.Canvas.Parser.Listener.CharacterRenderInfo
7068
> cris) {
7169
IDictionary<int, int?> indexMap = new Dictionary<int, int?>();

itext/itext.layout/itext/layout/Style.cs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -262,13 +262,12 @@ public virtual Style SetVerticalAlignment(VerticalAlignment? verticalAlignment)
262262
/// </summary>
263263
/// <param name="ratio">
264264
/// the ratio coefficient. It must be between 0 and 1, inclusive.
265-
/// It means that <b>ratio</b> part of the free space will
266-
/// be compensated by word spacing, and <b>1-ratio</b> part of the free space will
265+
/// It means that <strong>ratio</strong> part of the free space will
266+
/// be compensated by word spacing, and <strong>1-ratio</strong> part of the free space will
267267
/// be compensated by character spacing.
268-
/// If <b>ratio</b> is 1, additional character spacing will not be applied.
269-
/// If <b>ratio</b> is 0, additional word spacing will not be applied.
268+
/// If <strong>ratio</strong> is 1, additional character spacing will not be applied.
269+
/// If <strong>ratio</strong> is 0, additional word spacing will not be applied.
270270
/// </param>
271-
/// <returns/>
272271
public virtual Style SetSpacingRatio(float ratio) {
273272
SetProperty(Property.SPACING_RATIO, ratio);
274273
return (Style)(Object)this;

itext/itext.layout/itext/layout/element/BlockElement.cs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -284,13 +284,12 @@ public virtual T SetVerticalAlignment(VerticalAlignment? verticalAlignment) {
284284
/// </summary>
285285
/// <param name="ratio">
286286
/// the ratio coefficient. It must be between 0 and 1, inclusive.
287-
/// It means that <b>ratio</b> part of the free space will
288-
/// be compensated by word spacing, and <b>1-ratio</b> part of the free space will
287+
/// It means that <strong>ratio</strong> part of the free space will
288+
/// be compensated by word spacing, and <strong>1-ratio</strong> part of the free space will
289289
/// be compensated by character spacing.
290-
/// If <b>ratio</b> is 1, additional character spacing will not be applied.
291-
/// If <b>ratio</b> is 0, additional word spacing will not be applied.
290+
/// If <strong>ratio</strong> is 1, additional character spacing will not be applied.
291+
/// If <strong>ratio</strong> is 0, additional word spacing will not be applied.
292292
/// </param>
293-
/// <returns/>
294293
public virtual T SetSpacingRatio(float ratio) {
295294
SetProperty(Property.SPACING_RATIO, ratio);
296295
return (T)(Object)this;

port-hash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1dae07f83bea7f630455658a70aedc32f7f4939e
1+
50298a580493f1da6c02b10edbf52404f4592027

0 commit comments

Comments
 (0)