Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
This-Is-Ko committed Oct 20, 2024
1 parent d7181aa commit 3838f01
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,13 @@
import com.ko.footballupdater.configuration.TeamProperties;
import com.ko.footballupdater.models.ImageStatEntry;
import com.ko.footballupdater.models.PlayerMatchPerformanceStats;
import com.ko.footballupdater.models.PostType;
import com.ko.footballupdater.models.Post;
import com.ko.footballupdater.models.PostType;
import com.ko.footballupdater.models.Team;
import com.ko.footballupdater.models.form.HorizontalTranslation;
import com.ko.footballupdater.models.form.ImageGenParams;
import com.ko.footballupdater.models.form.StatisticEntryGenerateDto;
import com.ko.footballupdater.models.form.VerticalTranslation;
import com.ko.footballupdater.repositories.TeamRepository;
import com.ko.footballupdater.utils.DateTimeHelper;
import com.ko.footballupdater.utils.LogHelper;
import com.ko.footballupdater.utils.PostHelper;
Expand All @@ -22,7 +21,13 @@
import org.springframework.stereotype.Service;

import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.Color;
import java.awt.Font;
import java.awt.FontMetrics;
import java.awt.GradientPaint;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.RenderingHints;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
import com.ko.footballupdater.models.PostType;
import com.ko.footballupdater.repositories.PlayerRepository;
import com.ko.footballupdater.repositories.PostRepository;
import com.ko.footballupdater.repositories.TeamRepository;
import com.ko.footballupdater.request.RequestDataSource;
import com.ko.footballupdater.request.UpdatePlayerRequest;
import com.ko.footballupdater.responses.UpdatePlayersResponse;
Expand All @@ -39,9 +38,6 @@ public class PlayerService {
@Autowired
private PlayerRepository playerRepository;

@Autowired
private TeamRepository teamRepository;

@Autowired
private PostRepository postRepository;

Expand Down

0 comments on commit 3838f01

Please sign in to comment.