File tree Expand file tree Collapse file tree
sdks/java/io/jdbc/src/main/java/org/apache/beam/sdk/io/jdbc Expand file tree Collapse file tree Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments