Skip to content
Open
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
2 changes: 1 addition & 1 deletion Tabula/Cell.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
}

StringBuilder sb = new StringBuilder();
Utils.Sort(this.textElements, new ILL_DEFINED_ORDER());

Check warning on line 73 in Tabula/Cell.cs

View workflow job for this annotation

GitHub Actions / build

'TableRectangle.ILL_DEFINED_ORDER' is obsolete: 'with no replacement'

Check warning on line 73 in Tabula/Cell.cs

View workflow job for this annotation

GitHub Actions / build

'TableRectangle.ILL_DEFINED_ORDER' is obsolete: 'with no replacement'

Check warning on line 73 in Tabula/Cell.cs

View workflow job for this annotation

GitHub Actions / build

'TableRectangle.ILL_DEFINED_ORDER' is obsolete: 'with no replacement'

Check warning on line 73 in Tabula/Cell.cs

View workflow job for this annotation

GitHub Actions / build

'TableRectangle.ILL_DEFINED_ORDER' is obsolete: 'with no replacement'

Check warning on line 73 in Tabula/Cell.cs

View workflow job for this annotation

GitHub Actions / build

'TableRectangle.ILL_DEFINED_ORDER' is obsolete: 'with no replacement'

Check warning on line 73 in Tabula/Cell.cs

View workflow job for this annotation

GitHub Actions / build

'TableRectangle.ILL_DEFINED_ORDER' is obsolete: 'with no replacement'

Check warning on line 73 in Tabula/Cell.cs

View workflow job for this annotation

GitHub Actions / build

'TableRectangle.ILL_DEFINED_ORDER' is obsolete: 'with no replacement'

Check warning on line 73 in Tabula/Cell.cs

View workflow job for this annotation

GitHub Actions / build

'TableRectangle.ILL_DEFINED_ORDER' is obsolete: 'with no replacement'

Check warning on line 73 in Tabula/Cell.cs

View workflow job for this annotation

GitHub Actions / build

'TableRectangle.ILL_DEFINED_ORDER' is obsolete: 'with no replacement'
double curTop = this.textElements[0].Bottom;
foreach (TextChunk tc in this.textElements)
{
Expand All @@ -81,7 +81,7 @@
sb.Append(tc.GetText());
curTop = tc.Bottom;
}
return sb.ToString().Trim();
return sb.ToString();
}

/// <summary>
Expand All @@ -92,7 +92,7 @@
return GetText(true);
}

public bool IsSpanning { get; private set; }

Check warning on line 95 in Tabula/Cell.cs

View workflow job for this annotation

GitHub Actions / build

Missing XML comment for publicly visible type or member 'Cell.IsSpanning'

Check warning on line 95 in Tabula/Cell.cs

View workflow job for this annotation

GitHub Actions / build

Missing XML comment for publicly visible type or member 'Cell.IsSpanning'

Check warning on line 95 in Tabula/Cell.cs

View workflow job for this annotation

GitHub Actions / build

Missing XML comment for publicly visible type or member 'Cell.IsSpanning'

Check warning on line 95 in Tabula/Cell.cs

View workflow job for this annotation

GitHub Actions / build

Missing XML comment for publicly visible type or member 'Cell.IsSpanning'

public void SetSpanning(bool spanning)
{
Expand Down
2 changes: 1 addition & 1 deletion Tabula/TextChunk.cs
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ public override string GetText()
sb.Append(te.GetText());
}

return sb.ToString().Normalize(NormalizationForm.FormKC).Trim();
return sb.ToString().Normalize(NormalizationForm.FormKC);
}

/// <summary>
Expand Down
Loading