package org.apache.opendal;
import java.util.Map;
import lombok.Data;
@Data
public class PresignedRequest {
private final String method;
private final String uri;
private final Map<String, String> headers;
}
Failed to compile:
[ERROR] ...: Compilation failure: Compilation failure:
[ERROR] .../PresignedRequest.java:[30,26] variable method not initialized in the default constructor
[ERROR] .../PresignedRequest.java:[35,26] variable uri not initialized in the default constructor
[ERROR] .../PresignedRequest.java:[40,39] variable headers not initialized in the default constructor
[ERROR] -> [Help 1]
See https://github.com/apache/opendal/issues/5292, a full reproducible codebase.
It's basically:
Failed to compile: