foundations/foundation-protobuf/src/main/java/org/apache/servicecomb/foundation/protobuf/internal/schema/serializer/repeated/impl/ints/Fixed32PackedWriteSchemas.java [67:82]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
              continue;
            }

            ProtoUtils.throwNotSupportNullElement(protoField);
          }
        });
      };

      stringArrayWriter = (o, value) -> {
        if (value.length == 0) {
          return;
        }
        o.writeObject(tag, tagSize, value, (output, array) -> {
          for (String element : array) {
            if (element != null) {
              int parsedValue = Integer.parseInt(element, 10);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



foundations/foundation-protobuf/src/main/java/org/apache/servicecomb/foundation/protobuf/internal/schema/serializer/repeated/impl/ints/Int32PackedWriteSchemas.java [67:82]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
              continue;
            }

            ProtoUtils.throwNotSupportNullElement(protoField);
          }
        });
      };

      stringArrayWriter = (o, value) -> {
        if (value.length == 0) {
          return;
        }
        o.writeObject(tag, tagSize, value, (output, array) -> {
          for (String element : array) {
            if (element != null) {
              int parsedValue = Integer.parseInt(element, 10);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



