diff --git a/avro-codegen/src/main/java/com/linkedin/avroutil1/codegen/SpecificRecordGeneratorUtil.java b/avro-codegen/src/main/java/com/linkedin/avroutil1/codegen/SpecificRecordGeneratorUtil.java index bd998f73..e5eb32e5 100644 --- a/avro-codegen/src/main/java/com/linkedin/avroutil1/codegen/SpecificRecordGeneratorUtil.java +++ b/avro-codegen/src/main/java/com/linkedin/avroutil1/codegen/SpecificRecordGeneratorUtil.java @@ -240,7 +240,6 @@ public static boolean isNullUnionOf(AvroType type, AvroSchema schema) { * Handles list , union of list * @return true for List of String and List of Union of String */ - // change this public static boolean isListTransformerApplicableForSchema(AvroSchema schema, boolean disableStringTransform) { if (disableStringTransform || schema == null) { return false; @@ -248,7 +247,6 @@ public static boolean isListTransformerApplicableForSchema(AvroSchema schema, bo return isNullUnionOf(AvroType.ARRAY, schema) && schemaContainsString(schema); } - // change this public static boolean isMapTransformerApplicable(AvroSchema schema, boolean disableTransform) { if (disableTransform) { return false;