Skip to content

Commit 60287ca

Browse files
committed
Javadoc
1 parent 37ef195 commit 60287ca

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/org/apache/commons/csv/CSVParser.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ public CSVParser get() throws IOException {
175175
* Sets the lexer offset when the parser does not start parsing at the beginning of the source.
176176
*
177177
* @param characterOffset the lexer offset.
178-
* @return this instance.
178+
* @return {@code this} instance.
179179
*/
180180
public Builder setCharacterOffset(final long characterOffset) {
181181
this.characterOffset = characterOffset;
@@ -186,7 +186,7 @@ public Builder setCharacterOffset(final long characterOffset) {
186186
* Sets the CSV format. A copy of the given format is kept.
187187
*
188188
* @param format the CSV format, {@code null} resets to {@link CSVFormat#DEFAULT}.
189-
* @return this instance.
189+
* @return {@code this} instance.
190190
*/
191191
public Builder setFormat(final CSVFormat format) {
192192
this.format = CSVFormat.copy(format);
@@ -197,7 +197,7 @@ public Builder setFormat(final CSVFormat format) {
197197
* Sets the next record number to assign, defaults to {@code 1}.
198198
*
199199
* @param recordNumber the next record number to assign.
200-
* @return this instance.
200+
* @return {@code this} instance.
201201
*/
202202
public Builder setRecordNumber(final long recordNumber) {
203203
this.recordNumber = recordNumber;
@@ -208,7 +208,7 @@ public Builder setRecordNumber(final long recordNumber) {
208208
* Sets whether to enable byte tracking for the parser.
209209
*
210210
* @param trackBytes {@code true} to enable byte tracking; {@code false} to disable it.
211-
* @return this instance.
211+
* @return {@code this} instance.
212212
* @since 1.13.0
213213
*/
214214
public Builder setTrackBytes(final boolean trackBytes) {

0 commit comments

Comments
 (0)