Skip to content

Commit

Permalink
[lihui] #N/A refactor: refactor code
Browse files Browse the repository at this point in the history
  • Loading branch information
lhui committed Apr 5, 2024
1 parent fe0287e commit 3f08f6a
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 @@ -15,7 +15,7 @@
storages = @Storage("$APP_CONFIG$/TwCodeReviewToolsSetting.xml")
)
public class TrelloBoardLabelState implements PersistentStateComponent<TrelloLabelProperties> {
private TrelloLabelProperties trelloLabelProperties = new TrelloLabelProperties();
private final TrelloLabelProperties trelloLabelProperties = new TrelloLabelProperties();

public static TrelloBoardLabelState getInstance() {
return ApplicationManager.getApplication().getService(TrelloBoardLabelState.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
storages = @Storage("$APP_CONFIG$/TwCodeReviewToolsSetting.xml")
)
public class TrelloBoardMemberState implements PersistentStateComponent<TrelloMemberProperties> {
private TrelloMemberProperties trelloMemberProperties = new TrelloMemberProperties();
private final TrelloMemberProperties trelloMemberProperties = new TrelloMemberProperties();

public static TrelloBoardMemberState getInstance() {
return ApplicationManager.getApplication().getService(TrelloBoardMemberState.class);
Expand Down

0 comments on commit 3f08f6a

Please sign in to comment.