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

Remove the AbstractFilter class #1735

Merged
merged 1 commit into from Jan 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view

This file was deleted.

Expand Up @@ -3,7 +3,6 @@
import javafx.beans.property.*;
import me.xdrop.fuzzywuzzy.FuzzySearch;
import org.apache.commons.lang.StringUtils;
import org.phoenicis.javafx.views.AbstractFilter;
import org.phoenicis.repository.dto.ApplicationDTO;
import org.phoenicis.repository.dto.CategoryDTO;
import org.phoenicis.repository.dto.ScriptDTO;
Expand All @@ -18,7 +17,7 @@
* @author marc
* @since 29.03.17
*/
public class ApplicationFilter extends AbstractFilter {
public class ApplicationFilter {
private final OperatingSystemFetcher operatingSystemFetcher;

private final double fuzzySearchRatio;
Expand Down
Expand Up @@ -6,7 +6,6 @@
import javafx.beans.property.StringProperty;
import org.phoenicis.containers.dto.ContainerCategoryDTO;
import org.phoenicis.containers.dto.ContainerDTO;
import org.phoenicis.javafx.views.AbstractFilter;

import java.util.Optional;

Expand All @@ -15,7 +14,7 @@
*
* @author Marc Arndt
*/
public class ContainersFilter extends AbstractFilter {
public class ContainersFilter {
/**
* The entered search term.
* If no search term has been entered, this value is {@link Optional#empty()}.
Expand Down
Expand Up @@ -4,7 +4,6 @@
import org.phoenicis.engines.dto.EngineCategoryDTO;
import org.phoenicis.engines.dto.EngineSubCategoryDTO;
import org.phoenicis.engines.dto.EngineVersionDTO;
import org.phoenicis.javafx.views.AbstractFilter;

import java.nio.file.Paths;
import java.util.Optional;
Expand All @@ -28,7 +27,7 @@
* @author marc
* @since 23.04.17
*/
public class EnginesFilter extends AbstractFilter {
public class EnginesFilter {
/**
* The path to the installed engines
*/
Expand Down
Expand Up @@ -4,7 +4,6 @@
import javafx.beans.property.SimpleObjectProperty;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import org.phoenicis.javafx.views.AbstractFilter;
import org.phoenicis.javafx.views.mainwindow.installations.dto.InstallationCategoryDTO;
import org.phoenicis.javafx.views.mainwindow.installations.dto.InstallationDTO;

Expand All @@ -15,7 +14,7 @@
*
* @author Marc Arndt
*/
public class InstallationsFilter extends AbstractFilter {
public class InstallationsFilter {
/**
* The entered search term.
* If no search term has been entered, this value is {@link Optional#empty()}.
Expand Down
Expand Up @@ -4,7 +4,6 @@
import javafx.beans.property.SimpleObjectProperty;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import org.phoenicis.javafx.views.AbstractFilter;
import org.phoenicis.library.dto.ShortcutCategoryDTO;
import org.phoenicis.library.dto.ShortcutDTO;

Expand All @@ -15,7 +14,7 @@
*
* @author Marc Arndt
*/
public class LibraryFilter extends AbstractFilter {
public class LibraryFilter {
/**
* The entered search term.
* If no search term has been entered, this value is {@link Optional#empty()}.
Expand Down