File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
commons/src/main/java/com/datastax/oss/cdc Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 1717
1818import org .apache .avro .Schema ;
1919import org .apache .pulsar .client .api .schema .SchemaInfoProvider ;
20- import org .apache .pulsar .client .impl .schema .SchemaInfoImpl ;
2120import org .apache .pulsar .common .schema .SchemaInfo ;
2221import org .apache .pulsar .common .schema .SchemaType ;
2322
@@ -35,7 +34,7 @@ public class NativeSchemaWrapper implements org.apache.pulsar.client.api.Schema<
3534 public NativeSchemaWrapper (Schema nativeSchema , SchemaType pulsarSchemaType ) {
3635 this .nativeSchema = nativeSchema ;
3736 this .pulsarSchemaType = pulsarSchemaType ;
38- this .pulsarSchemaInfo = SchemaInfoImpl .builder ()
37+ this .pulsarSchemaInfo = SchemaInfo .builder ()
3938 .schema (nativeSchema .toString (false ).getBytes (StandardCharsets .UTF_8 ))
4039 .properties (new HashMap <>())
4140 .type (pulsarSchemaType )
You can’t perform that action at this time.
0 commit comments