Merge pull request #4982 from ByteHamster/remove-unused-helper

Removed unused helper class
This commit is contained in:
ByteHamster 2021-03-03 14:51:53 +01:00 committed by GitHub
commit fae32c4fee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 24 deletions

View File

@ -1,24 +0,0 @@
package de.danoeh.antennapod.core.util;
import de.danoeh.antennapod.core.BuildConfig;
/**
* Helper class to handle the different build flavors.
*/
public enum Flavors {
FREE,
PLAY,
UNKNOWN;
public static final Flavors FLAVOR;
static {
if (BuildConfig.FLAVOR.equals("free")) {
FLAVOR = FREE;
} else if (BuildConfig.FLAVOR.equals("play")) {
FLAVOR = PLAY;
} else {
FLAVOR = UNKNOWN;
}
}
}