Skip to content
Snippets Groups Projects
Commit 6d917589 authored by felmer's avatar felmer
Browse files

LMS-2710 declare empty filter method in enum as abstract

SVN: 24067
parent a256a48b
No related branches found
No related tags found
No related merge requests found
......@@ -130,10 +130,8 @@ public class SizeCriterion implements IImageSetSelectionCriterion
}
};
void filter(int width, int height, List<IImageSetMetaData> imageMetaData,
List<IImageSetMetaData> filteredImageMetaData)
{
}
abstract void filter(int width, int height, List<IImageSetMetaData> imageMetaData,
List<IImageSetMetaData> filteredImageMetaData);
}
private static final Comparator<IImageSetMetaData> SIZE_COMPARATOR =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment