Skip to content

Commit 6f30fe1

Browse files
fix: remove extraneous semicolon
1 parent 5243ef8 commit 6f30fe1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/amazonaws/secretsmanager/caching/cache/SecretCacheObject.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public SecretCacheObject(final String secretId,
127127
*
128128
* @return The cached GetSecretValue result based on the current cached state.
129129
*/
130-
protected abstract GetSecretValueResponse getSecretValue(T result, String versionId, String versionStage);;
130+
protected abstract GetSecretValueResponse getSecretValue(T result, String versionId, String versionStage);
131131

132132
public abstract boolean equals(Object obj);
133133
public abstract int hashCode();

0 commit comments

Comments
 (0)