Skip to content

Commit

Permalink
[FLINK-19631][table-common] Fix JavaDoc in Decoding/EncodingFormatFac…
Browse files Browse the repository at this point in the history
…tory

This closes apache#13633.
  • Loading branch information
zhushang authored and twalthr committed Oct 15, 2020
1 parent 9f0650f commit 9dee348
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ public interface DecodingFormatFactory<I> extends Factory {
/**
* Creates a format from the given context and format options.
*
* <p>The format options have been projected to top-level options (e.g. from {@code key.format.ignore-errors}
* to {@code format.ignore-errors}).
* <p>The format options have been projected to top-level options (e.g. from {@code format.ignore-errors}
* to {@code ignore-errors}).
*/
DecodingFormat<I> createDecodingFormat(DynamicTableFactory.Context context, ReadableConfig formatOptions);
}
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ public interface EncodingFormatFactory<I> extends Factory {
/**
* Creates a format from the given context and format options.
*
* <p>The format options have been projected to top-level options (e.g. from {@code key.format.ignore-errors}
* to {@code format.ignore-errors}).
* <p>The format options have been projected to top-level options (e.g. from {@code format.ignore-errors}
* to {@code ignore-errors}).
*/
EncodingFormat<I> createEncodingFormat(DynamicTableFactory.Context context, ReadableConfig formatOptions);
}

0 comments on commit 9dee348

Please sign in to comment.