Skip to content

Commit

Permalink
Extracted JabRefPrefences out of PersistenceVisualStateTable
Browse files Browse the repository at this point in the history
  • Loading branch information
calixtus committed May 28, 2020
1 parent 62f3038 commit 3135197
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@

import javafx.beans.InvalidationListener;

import org.jabref.preferences.JabRefPreferences;
import org.jabref.preferences.PreferencesService;

/**
* Keep track of changes made to the columns (reordering, resorting, resizing).
*/
public class PersistenceVisualStateTable {

private final MainTable mainTable;
private final JabRefPreferences preferences;
private final PreferencesService preferences;

public PersistenceVisualStateTable(final MainTable mainTable, JabRefPreferences preferences) {
public PersistenceVisualStateTable(final MainTable mainTable, PreferencesService preferences) {
this.mainTable = mainTable;
this.preferences = preferences;

Expand Down

0 comments on commit 3135197

Please sign in to comment.