Skip to content

Commit 105aa29

Browse files
committed
Remove Cell#add(Table) method.
Use Cell#add(IBlockElement) instead
1 parent 5d480ae commit 105aa29

File tree

1 file changed

+0
-13
lines changed
  • layout/src/main/java/com/itextpdf/layout/element

1 file changed

+0
-13
lines changed

layout/src/main/java/com/itextpdf/layout/element/Cell.java

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -173,19 +173,6 @@ public Cell add(Image element) {
173173
return this;
174174
}
175175

176-
/**
177-
* Adds an embedded table to the cell's contents.
178-
*
179-
* @param element a nested {@link Table}
180-
* @return this Element
181-
* @deprecated use {@link #add(IBlockElement)} instead.
182-
*/
183-
@Deprecated
184-
public Cell add(Table element) {
185-
childElements.add(element);
186-
return this;
187-
}
188-
189176
/**
190177
* Directly adds a String of text to this cell. The content is wrapped in a
191178
* layout element.

0 commit comments

Comments
 (0)