Skip to content

Commit 04abc83

Browse files
committed
Fix JdbcUtil after merge
1 parent a08e1bc commit 04abc83

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

  • sdks/java/io/jdbc/src/main/java/org/apache/beam/sdk/io/jdbc

sdks/java/io/jdbc/src/main/java/org/apache/beam/sdk/io/jdbc/JdbcUtil.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -455,12 +455,10 @@ private static Calendar withTimestampAndTimezone(DateTime dateTime) {
455455
return calendar;
456456
}
457457

458-
/**
459-
* Returns a {@code JdbcReadPartitionsHelper} instance associated with the given {@param type}.
460-
*/
458+
/** Returns a {@code JdbcReadPartitionsHelper} instance associated with the given {@code type}. */
461459
static <T> @Nullable JdbcReadWithPartitionsHelper<T> getPartitionsHelper(TypeDescriptor<T> type) {
462460
// This cast is unchecked, thus this is a small type-checking risk. We just need
463-
// to make sure that all preset helpers in `JdbcUtil.PRESET_HELPERS` are matched
461+
// to make sure that all preset helpers in {@code PRESET_HELPERS} are matched
464462
// in type from their Key and their Value.
465463
return (JdbcReadWithPartitionsHelper<T>) PRESET_HELPERS.get(type.getRawType());
466464
}

0 commit comments

Comments
 (0)