Skip to content

Commit 8c21301

Browse files
committed
make CommitFailedException member fields final
1 parent 4621ca5 commit 8c21301

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kernel/kernel-api/src/main/java/io/delta/kernel/commit/CommitFailedException.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
*/
3232
public class CommitFailedException extends Exception {
3333

34-
public boolean retryable;
35-
public boolean conflict;
34+
public final boolean retryable;
35+
public final boolean conflict;
3636

3737
public CommitFailedException(boolean retryable, boolean conflict, String message) {
3838
super(message);

0 commit comments

Comments
 (0)