Skip to content

Commit

Permalink
HHH-15245 fix test regression
Browse files Browse the repository at this point in the history
  • Loading branch information
maesenka authored and beikov committed May 4, 2022
1 parent 64c3969 commit 93f1c04
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -43,7 +43,7 @@ public GeomCodec codec() {
return new GeomCodec() {
@Override
public Geometry<?> toGeometry(Object in) {
return PGGeometryJdbcType.INSTANCE_WKB_2.toGeometry( in );
return (Geometry<?>)( in );
}
};
}
Expand Down

0 comments on commit 93f1c04

Please sign in to comment.