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

fix misuse of GraphBitcoinConfig singleton #47

Open
thisames opened this issue Dec 9, 2024 · 0 comments
Open

fix misuse of GraphBitcoinConfig singleton #47

thisames opened this issue Dec 9, 2024 · 0 comments
Assignees

Comments

@thisames
Copy link
Owner

thisames commented Dec 9, 2024

public class GraphBitcoinConfig {

  private static GraphBitcoinConfig instance;
  private int timeUpdateGraph = 5;

  private GraphBitcoinConfig() {}

  public static synchronized GraphBitcoinConfig getInstance() {
    if (instance == null) {
      instance = new GraphBitcoinConfig();
    }
    return instance;
  }

  public int getTimeUpdateGraph() {
    return timeUpdateGraph;
  }

  public void setTimeUpdateGraph(int timeUpdateGraph) {
    this.timeUpdateGraph = timeUpdateGraph;
  }
}
@thisames thisames self-assigned this Dec 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant