statefun-flink/statefun-flink-common/src/main/java/com/google/protobuf/MoreByteStrings.java [22:37]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class MoreByteStrings {

  public static ByteString wrap(byte[] bytes) {
    return ByteString.wrap(bytes);
  }

  public static ByteString wrap(byte[] bytes, int offset, int len) {
    return ByteString.wrap(bytes, offset, len);
  }

  public static ByteString wrap(ByteBuffer buffer) {
    return ByteString.wrap(buffer);
  }

  public static ByteString concat(ByteString first, ByteString second) {
    return first.concat(second);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



statefun-shaded/statefun-protobuf-shaded/src/main/java/org/apache/flink/statefun/sdk/shaded/com/google/protobuf/MoreByteStrings.java [22:37]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class MoreByteStrings {

  public static ByteString wrap(byte[] bytes) {
    return ByteString.wrap(bytes);
  }

  public static ByteString wrap(byte[] bytes, int offset, int len) {
    return ByteString.wrap(bytes, offset, len);
  }

  public static ByteString wrap(ByteBuffer buffer) {
    return ByteString.wrap(buffer);
  }

  public static ByteString concat(ByteString first, ByteString second) {
    return first.concat(second);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



