Skip to content

Commit

Permalink
Refactor: Replace wildcard imports with explicit imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Vavinan committed Apr 2, 2024
1 parent 27c7f6e commit a650a23
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/java/budgetbuddy/insights/Insight.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@
import org.knowm.xchart.XChartPanel;
import org.knowm.xchart.style.PieStyler;

import javax.swing.*;
import java.awt.*;

import javax.swing.JFrame;
import javax.swing.JPanel;
import java.awt.BorderLayout;
import java.util.ArrayList;

import static java.lang.Math.abs;
Expand Down

0 comments on commit a650a23

Please sign in to comment.