aboutsummaryrefslogtreecommitdiff
path: root/src/musichub/business/Genre.java
diff options
context:
space:
mode:
authorClyhtsuriva <aimeric@adjutor.xyz>2021-06-26 12:34:26 +0200
committerClyhtsuriva <aimeric@adjutor.xyz>2021-06-26 12:34:26 +0200
commite64ffae239b19871704b4ac1e9cd58275ed58622 (patch)
treeb7586af24fc281116a2913eaa9f4d8d849468d3b /src/musichub/business/Genre.java
parente38c5887682b13b7d9dadc822c02654939fc7401 (diff)
Changed the architecture to respect maven and generated an empty javadoc
Diffstat (limited to 'src/musichub/business/Genre.java')
-rw-r--r--src/musichub/business/Genre.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/musichub/business/Genre.java b/src/musichub/business/Genre.java
deleted file mode 100644
index 18deca6..0000000
--- a/src/musichub/business/Genre.java
+++ /dev/null
@@ -1,14 +0,0 @@
-package musichub.business;
-
-public enum Genre {
- JAZZ("jazz"), CLASSIC("classic"), HIPHOP("hiphop"), ROCK("rock"), POP("pop"), RAP("rap");
- private final String genre;
-
- Genre(String genre) {
- this.genre = genre;
- }
-
- public String getGenre() {
- return genre;
- }
-} \ No newline at end of file