Skip to content

Commit

Permalink
Remove useless setter on shadow config (#33543)
Browse files Browse the repository at this point in the history
* Remove useless setter on shadow config

* Remove useless setter on shadow config
  • Loading branch information
terrymanu authored Nov 4, 2024
1 parent 530df2d commit e87a233
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,12 @@

import lombok.Getter;
import lombok.RequiredArgsConstructor;
import lombok.Setter;

/**
* Shadow data source mapper configuration.
*/
@RequiredArgsConstructor
@Getter
@Setter
public final class ShadowDataSourceConfiguration {

private final String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

import lombok.Getter;
import lombok.RequiredArgsConstructor;
import lombok.Setter;

import java.util.Collection;

Expand All @@ -28,7 +27,6 @@
*/
@RequiredArgsConstructor
@Getter
@Setter
public final class ShadowTableConfiguration {

private final Collection<String> dataSourceNames;
Expand Down

0 comments on commit e87a233

Please sign in to comment.