Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking β€œSign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sweep: Race condition with fund update (βœ“ Sandbox Passed) #237

Closed
wants to merge 13 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: Updated src/main/java/com/yuriytkach/tracker
  • Loading branch information
sweep-ai[bot] authored Dec 16, 2023
commit 032be856ec5fd8f2cc7f6e3ba7ac75e5af57b3b5
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
package com.yuriytkach.tracker.fundraiser.model.exception;

import java.lang.RuntimeException;

Check notice on line 3 in src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java

Codacy Production / Codacy Static Code Analysis

src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java#L3

Redundant import from the java.lang package - java.lang.RuntimeException.

Check notice on line 3 in src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java

Codacy Production / Codacy Static Code Analysis

src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java#L3

Unused import - java.lang.RuntimeException.

public class FundTotalMismatchException extends RuntimeException {
public FundTotalMismatchException(String message) {

public FundTotalMismatchException(final String message) {

Check notice on line 7 in src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java

Codacy Production / Codacy Static Code Analysis

src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java#L7

'ctor def modifier' has incorrect indentation level 4, expected level should be 2.
super(message);

Check notice on line 8 in src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java

Codacy Production / Codacy Static Code Analysis

src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java#L8

'ctor def' child has incorrect indentation level 8, expected level should be 4.
}

Check notice on line 9 in src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java

Codacy Production / Codacy Static Code Analysis

src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java#L9

'ctor def rcurly' has incorrect indentation level 4, expected level should be 2.

public FundTotalMismatchException(String message, Throwable cause) {
public FundTotalMismatchException(final String message, final Throwable cause) {

Check notice on line 11 in src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java

Codacy Production / Codacy Static Code Analysis

src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java#L11

'ctor def modifier' has incorrect indentation level 4, expected level should be 2.
super(message, cause);

Check notice on line 12 in src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java

Codacy Production / Codacy Static Code Analysis

src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java#L12

'ctor def' child has incorrect indentation level 8, expected level should be 4.
}
}
Loading