aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDavid Cole <40234707+DavidArthurCole@users.noreply.github.com>2024-09-26 03:56:44 -0400
committerGitHub <noreply@github.com>2024-09-26 09:56:44 +0200
commit092a29dd8b13c2b04b0b7c259446ab697201dd5e (patch)
treef3704e259d34bfccef083834cb9106578695a694 /src
parente90fd65559ef551b29de7d28f4fea3a46cc2a4e6 (diff)
downloadskyhanni-092a29dd8b13c2b04b0b7c259446ab697201dd5e.tar.gz
skyhanni-092a29dd8b13c2b04b0b7c259446ab697201dd5e.tar.bz2
skyhanni-092a29dd8b13c2b04b0b7c259446ab697201dd5e.zip
Backend: Dekekt (#2547)
Co-authored-by: Linnea Gräf <nea@nea.moe> Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Co-authored-by: Cal <cwolfson58@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/events/RenderItemTooltipEvent.kt (renamed from src/main/java/at/hannibal2/skyhanni/events/RenderTooltipEvent.kt)2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/inventory/experimentationtable/SuperpairExperimentInformationDisplay.kt2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/events/RenderTooltipEvent.kt b/src/main/java/at/hannibal2/skyhanni/events/RenderItemTooltipEvent.kt
index ff9e6b448..f8cb98802 100644
--- a/src/main/java/at/hannibal2/skyhanni/events/RenderTooltipEvent.kt
+++ b/src/main/java/at/hannibal2/skyhanni/events/RenderItemTooltipEvent.kt
@@ -2,4 +2,4 @@ package at.hannibal2.skyhanni.events
import net.minecraft.item.ItemStack
-class RenderItemTooltipEvent(val stack: ItemStack) : LorenzEvent() \ No newline at end of file
+class RenderItemTooltipEvent(val stack: ItemStack) : LorenzEvent()
diff --git a/src/main/java/at/hannibal2/skyhanni/features/inventory/experimentationtable/SuperpairExperimentInformationDisplay.kt b/src/main/java/at/hannibal2/skyhanni/features/inventory/experimentationtable/SuperpairExperimentInformationDisplay.kt
index 86d7fca50..b1ee56659 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/inventory/experimentationtable/SuperpairExperimentInformationDisplay.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/inventory/experimentationtable/SuperpairExperimentInformationDisplay.kt
@@ -31,7 +31,7 @@ object SuperpairExperimentInformationDisplay {
data class Item(val index: Int, val name: String)
data class ItemPair(val first: Item, val second: Item)
- // TODO remove string. use enum instead! maybe even create new data type instaed of map of pairs
+ // TODO remove string. use enum instead! maybe even create new data type instead of map of pairs
private var found = mutableMapOf<Pair<Item?, ItemPair?>, String>()
private var toCheck = mutableListOf<Pair<Int, Int>>()