aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/features/nether
diff options
context:
space:
mode:
authorCalMWolfs <94038482+CalMWolfs@users.noreply.github.com>2024-09-29 18:10:12 +1000
committerGitHub <noreply@github.com>2024-09-29 10:10:12 +0200
commit37a186a932fcd81cfed66642e6a7833937f43b3a (patch)
tree46c88685f9b9ce804366d68bb96cb02a8e8b3ae4 /src/main/java/at/hannibal2/skyhanni/features/nether
parent1f4ce6c4207fe6ef6eaff48a35f61b18a524a429 (diff)
downloadskyhanni-37a186a932fcd81cfed66642e6a7833937f43b3a.tar.gz
skyhanni-37a186a932fcd81cfed66642e6a7833937f43b3a.tar.bz2
skyhanni-37a186a932fcd81cfed66642e6a7833937f43b3a.zip
Backend: Detekt Fixes Part 2 (#2607)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/nether')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/FactionType.kt2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/quest/MiniBossQuest.kt2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/quest/QuestCategory.kt2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/quest/QuestState.kt2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/FactionType.kt b/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/FactionType.kt
index 389f1ccc0..d531aa8f4 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/FactionType.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/FactionType.kt
@@ -5,4 +5,4 @@ enum class FactionType {
MAGE,
NONE
-} \ No newline at end of file
+}
diff --git a/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/quest/MiniBossQuest.kt b/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/quest/MiniBossQuest.kt
index 914f1e921..609a22a0f 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/quest/MiniBossQuest.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/quest/MiniBossQuest.kt
@@ -10,4 +10,4 @@ class MiniBossQuest(val miniBoss: CrimsonMiniBoss, state: QuestState, needAmount
miniBoss.displayName,
state,
needAmount
- ) \ No newline at end of file
+ )
diff --git a/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/quest/QuestCategory.kt b/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/quest/QuestCategory.kt
index f9987fe1c..379f0c26b 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/quest/QuestCategory.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/quest/QuestCategory.kt
@@ -9,4 +9,4 @@ enum class QuestCategory(val displayName: String) {
KUUDRA("Kuudra Kill"),
UNKNOWN("§4Unknown"),
-} \ No newline at end of file
+}
diff --git a/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/quest/QuestState.kt b/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/quest/QuestState.kt
index acde3785d..f98514a66 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/quest/QuestState.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/quest/QuestState.kt
@@ -5,4 +5,4 @@ enum class QuestState(val displayName: String, val color: String) {
ACCEPTED("Accepted", "§b"),
READY_TO_COLLECT("Ready to collect", "§a"),
COLLECTED("Collected", "§7"),
-} \ No newline at end of file
+}