File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed
hibernate-reactive-core/src/main/java/org/hibernate/reactive/provider/impl Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ private Dialect dialect(ServiceRegistry serviceRegistry) {
99
99
}
100
100
101
101
/**
102
- * Some database (MySQL for example) don't like saving temporal types with a timezone.
102
+ * Some databases (MySQL for example) don't like saving temporal types with a timezone.
103
103
*
104
104
* @see TimestampJdbcType
105
105
*/
@@ -213,7 +213,6 @@ private static class JsonObjectJavaType implements BasicJavaType<JsonObject> {
213
213
214
214
@ Override
215
215
public JdbcType getRecommendedJdbcType (JdbcTypeIndicators context ) {
216
- // FIXME: Check this
217
216
// use Types.JAVA_OBJECT instead of Types.JSON because
218
217
// the Dialects have the type 'json' registered under
219
218
// that JDBC type code
@@ -246,11 +245,6 @@ public JsonType(Dialect dialect) {
246
245
super ( ObjectJdbcType .INSTANCE , JsonObjectJavaType .INSTANCE );
247
246
}
248
247
249
- @ Override
250
- public JavaType <?> getJdbcJavaType () {
251
- return super .getJdbcJavaType ();
252
- }
253
-
254
248
@ Override
255
249
public String getName () {
256
250
return "json" ;
You can’t perform that action at this time.
0 commit comments