Skip to content

Commit

Permalink
Code smell fix
Browse files Browse the repository at this point in the history
Signed-off-by: lisrte <[email protected]>
  • Loading branch information
Lisrte committed Jun 13, 2024
1 parent 80ed0af commit 1f197c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*/
public class CurvesJsonDeserializer extends StdDeserializer<List<DynawoCurvesBuilder>> {

private final Supplier<DynawoCurvesBuilder> builderConstructor;
private transient final Supplier<DynawoCurvesBuilder> builderConstructor;

public CurvesJsonDeserializer(Supplier<DynawoCurvesBuilder> builderConstructor) {
super(List.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

import static org.junit.jupiter.api.Assertions.assertEquals;

public class CurvesBuilderTest {
class CurvesBuilderTest {

private ReportNode reporter;

Expand Down

0 comments on commit 1f197c5

Please sign in to comment.