Remove redundant private modifier from enum

pull/95/head
Andrew Gaul 2015-10-26 12:00:21 -07:00
rodzic a7d1a465d7
commit 22d57b1f18
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -77,7 +77,7 @@ enum S3ErrorCode {
private final int httpStatusCode; private final int httpStatusCode;
private final String message; private final String message;
private S3ErrorCode(int httpStatusCode, String message) { S3ErrorCode(int httpStatusCode, String message) {
this.errorCode = CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, this.errorCode = CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL,
name()); name());
this.httpStatusCode = httpStatusCode; this.httpStatusCode = httpStatusCode;