Reduce visibility of methods

pull/124/head
Andrew Gaul 2016-02-16 16:16:51 -08:00
rodzic 1cacf66cf8
commit d66b539f2c
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -86,15 +86,15 @@ enum S3ErrorCode {
this.message = requireNonNull(message);
}
public String getErrorCode() {
String getErrorCode() {
return errorCode;
}
public int getHttpStatusCode() {
int getHttpStatusCode() {
return httpStatusCode;
}
public String getMessage() {
String getMessage() {
return message;
}