We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c17fac6 commit 8ab9677Copy full SHA for 8ab9677
core/sdk-core/src/main/java/software/amazon/awssdk/core/exception/SdkServiceException.java
@@ -233,13 +233,13 @@ public Builder writableStackTrace(Boolean writableStackTrace) {
233
234
@Override
235
public Builder numAttempts(Integer numAttempts) {
236
- this.numAttempts(numAttempts);
+ this.numAttempts = numAttempts;
237
return this;
238
}
239
240
241
public Integer numAttempts() {
242
- return this.numAttempts();
+ return numAttempts;
243
244
245
0 commit comments