Skip to content

Commit 86b0587

Browse files
committed
Replace garbled Unicode characters
RND-486 (cherry picked from commit f535213)
1 parent 9ea6e89 commit 86b0587

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

forms/src/main/java/com/itextpdf/forms/fields/PdfChoiceFormField.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ protected PdfChoiceFormField(PdfDictionary pdfObject) {
7676

7777
/**
7878
* Returns <code>Ch</code>, the form type for choice form fields.
79-
*
79+
*
8080
* @return the form type, as a {@link PdfName}
8181
*/
8282
@Override
@@ -86,7 +86,7 @@ public PdfName getFormType() {
8686

8787
/**
8888
* Sets the index of the first visible option in a scrollable list.
89-
*
89+
*
9090
* @param index the index of the first option
9191
* @return current {@link PdfChoiceFormField}
9292
*/
@@ -106,7 +106,7 @@ public PdfNumber getTopIndex() {
106106

107107
/**
108108
* Sets the selected items in the field.
109-
*
109+
*
110110
* @param indices a sorted array of indices representing selected items in the field
111111
* @return current {@link PdfChoiceFormField}
112112
*/
@@ -185,7 +185,7 @@ public PdfChoiceFormField setListSelected(int[] optionNumbers) {
185185

186186
/**
187187
* Gets the currently selected items in the field
188-
*
188+
*
189189
* @return a sorted array of indices representing the currently selected items in the field
190190
*/
191191
public PdfArray getIndices() {
@@ -203,7 +203,7 @@ public PdfChoiceFormField setCombo(boolean combo) {
203203

204204
/**
205205
* If true, the field is a combo box; if false, the field is a list box.
206-
*
206+
*
207207
* @return whether or not the field is now a combo box.
208208
*/
209209
public boolean isCombo() {
@@ -232,7 +232,7 @@ public boolean isEdit() {
232232
}
233233

234234
/**
235-
* If true, the field???s option items shall be sorted alphabetically.
235+
* If true, the field's option items shall be sorted alphabetically.
236236
* This flag is intended for use by writers, not by readers.
237237
* @param sort whether or not to sort the items
238238
* @return current {@link PdfChoiceFormField}
@@ -242,7 +242,7 @@ public PdfChoiceFormField setSort(boolean sort) {
242242
}
243243

244244
/**
245-
* If true, the field???s option items shall be sorted alphabetically.
245+
* If true, the field's option items shall be sorted alphabetically.
246246
* This flag is intended for use by writers, not by readers.
247247
* @return whether or not the items are currently sorted
248248
*/
@@ -251,7 +251,7 @@ public boolean isSort() {
251251
}
252252

253253
/**
254-
* If true, more than one of the field???s option items may be selected
254+
* If true, more than one of the field's option items may be selected
255255
* simultaneously; if false, at most one item shall be selected.
256256
* @param multiSelect whether or not to allow multiple selection
257257
* @return current {@link PdfChoiceFormField}
@@ -261,7 +261,7 @@ public PdfChoiceFormField setMultiSelect(boolean multiSelect) {
261261
}
262262

263263
/**
264-
* If true, more than one of the field???s option items may be selected simultaneously; if false, at most one item shall be selected.
264+
* If true, more than one of the field's option items may be selected simultaneously; if false, at most one item shall be selected.
265265
* @return whether or not multiple selection is currently allowed
266266
*/
267267
public boolean isMultiSelect() {

kernel/src/main/java/com/itextpdf/kernel/pdf/canvas/PdfCanvas.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,7 @@ public PdfCanvas curveTo(double x1, double y1, double x2, double y2, double x3,
930930
}
931931

932932
/**
933-
* Appends a B??zier curve to the path, starting from the current point.
933+
* Appends a Bezier curve to the path, starting from the current point.
934934
*
935935
* @param x2 x coordinate of the second control point.
936936
* @param y2 y coordinate of the second control point.
@@ -952,7 +952,7 @@ public PdfCanvas curveTo(double x2, double y2, double x3, double y3) {
952952
}
953953

954954
/**
955-
* Appends a B??zier curve to the path, starting from the current point.
955+
* Appends a Bezier curve to the path, starting from the current point.
956956
*
957957
* @param x1 x coordinate of the first control point.
958958
* @param y1 y coordinate of the first control point.

layout/src/main/java/com/itextpdf/layout/ElementPropertyContainer.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ This file is part of the iText (R) project.
6969
/**
7070
* A generic abstract element that fits in a PDF layout object hierarchy.
7171
* A superclass of all {@link com.itextpdf.layout.element.IElement layout object} implementations.
72-
*
72+
*
7373
* @param <T> this type
7474
*/
7575
public abstract class ElementPropertyContainer<T extends IPropertyContainer> implements IPropertyContainer {
@@ -391,7 +391,7 @@ public T setTextAlignment(TextAlignment alignment) {
391391

392392
/**
393393
* Defines a custom spacing distance between all characters of a textual element.
394-
* The character-spacing parameter is added to the glyph???s horizontal or vertical displacement (depending on the writing mode).
394+
* The character-spacing parameter is added to the glyph's horizontal or vertical displacement (depending on the writing mode).
395395
*
396396
* @param charSpacing a floating point value
397397
* @return this Element.
@@ -435,7 +435,7 @@ public T setFontKerning(FontKerning fontKerning) {
435435
public T setBackgroundColor(Color backgroundColor) {
436436
return setBackgroundColor(backgroundColor, 1f);
437437
}
438-
438+
439439
/**
440440
* Specifies a background color for the Element.
441441
*

0 commit comments

Comments
 (0)