Skip to content

Commit d1ecccd

Browse files
committed
Polishing.
[#551] Signed-off-by: Mark Paluch <[email protected]>
1 parent c42ec5c commit d1ecccd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/io/r2dbc/postgresql/codec/Codec.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public interface Codec<T> {
3535
* Determine whether this {@link Codec} is capable of decoding a value for the given {@code dataType} and {@link Format} and whether it can represent the decoded value as the desired
3636
* {@link Class type}.
3737
*
38-
* @param dataType the the Postgres OID to decode
38+
* @param dataType the Postgres OID to decode
3939
* @param format the data type {@link Format}, text or binary
4040
* @param type the desired value type
4141
* @return {@code true} if this codec is able to decode values for tge given {@code dataType} and {@link Format}

src/test/java/io/r2dbc/postgresql/AbstractCodecIntegrationTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -865,7 +865,7 @@ private <W, R> void testCodecReadAs(W toWrite, Class<R> javaTypeToRead, R expect
865865

866866
private <W, R> void testCodecReadAs(W toWrite, Class<R> javaTypeToRead, Consumer<R> equality, String sqlType) {
867867
SERVER.getJdbcOperations().execute("DROP TABLE IF EXISTS test");
868-
SERVER.getJdbcOperations().execute(String.format("CREATE TABLE test ( value %s )", sqlType));
868+
SERVER.getJdbcOperations().execute(String.format("CREATE TABLE test (value %s)", sqlType));
869869

870870
try {
871871
this.connectionFactory.create()

0 commit comments

Comments
 (0)