Skip to content

Commit

Permalink
- always perform duplicate check when reading filmlist
Browse files Browse the repository at this point in the history
  • Loading branch information
derreisende77 committed Oct 22, 2024
1 parent 703dbd9 commit 9dbb4ef
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package mediathek.gui.actions;

import mediathek.gui.duplicates.DuplicateStatisticsDialog;
import mediathek.gui.duplicates.statistics.DuplicateStatisticsDialog;
import org.jetbrains.annotations.NotNull;

import javax.swing.*;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Created by JFormDesigner on Tue Oct 22 13:37:47 CEST 2024
*/

package mediathek.gui.duplicates;
package mediathek.gui.duplicates.details;

import ca.odell.glazedlists.BasicEventList;
import ca.odell.glazedlists.SortedList;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mediathek.gui.duplicates;
package mediathek.gui.duplicates.details;

import ca.odell.glazedlists.gui.AdvancedTableFormat;
import mediathek.daten.DatenFilm;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
* Created by JFormDesigner on Mon Oct 21 17:52:41 CEST 2024
*/

package mediathek.gui.duplicates;
package mediathek.gui.duplicates.statistics;

import ca.odell.glazedlists.SortedList;
import ca.odell.glazedlists.swing.GlazedListsSwing;
import mediathek.config.Daten;
import mediathek.gui.duplicates.FilmStatistics;
import mediathek.tool.ApplicationConfiguration;
import org.apache.commons.configuration2.sync.LockMode;
import org.apache.logging.log4j.LogManager;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package mediathek.gui.duplicates;
package mediathek.gui.duplicates.statistics;

import ca.odell.glazedlists.gui.AdvancedTableFormat;
import mediathek.gui.duplicates.FilmStatistics;

import java.util.Comparator;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/mediathek/gui/tabs/tab_film/GuiFilme.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import mediathek.gui.dialog.DialogAboNoSet;
import mediathek.gui.dialog.DialogAddDownload;
import mediathek.gui.dialog.DialogAddMoreDownload;
import mediathek.gui.duplicates.DuplicateFilmDetailsDialog;
import mediathek.gui.duplicates.details.DuplicateFilmDetailsDialog;
import mediathek.gui.messages.*;
import mediathek.gui.messages.history.DownloadHistoryChangedEvent;
import mediathek.gui.tabs.AGuiTabPanel;
Expand Down

0 comments on commit 9dbb4ef

Please sign in to comment.