diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-08 03:01:50 +0200 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-08 03:01:50 +0200 |
| commit | 7b84e7782e63d85bf17a4f9c3d66af5681eecf90 (patch) | |
| tree | eb5d8ff9a896ef6c5cbbb614d72fe8032e16210c /src/main/java/at/hannibal2/skyhanni/features/bazaar | |
| parent | 7b6aac3ea8b7aebaef104097b0ac7767b27f4c80 (diff) | |
| download | skyhanni-7b84e7782e63d85bf17a4f9c3d66af5681eecf90.tar.gz skyhanni-7b84e7782e63d85bf17a4f9c3d66af5681eecf90.tar.bz2 skyhanni-7b84e7782e63d85bf17a4f9c3d66af5681eecf90.zip | |
code cleanup some utils classes
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/bazaar')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarApi.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarApi.kt b/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarApi.kt index de8a29e96..a90520651 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarApi.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarApi.kt @@ -28,8 +28,8 @@ class BazaarApi { getBazaarDataByInternalName_new(NEUInternalName.from(internalName)) fun getBazaarDataByInternalName_new(internalName: NEUInternalName) = if (isBazaarItem(internalName)) { - holder.getData(internalName) - } else null + holder.getData(internalName) + } else null fun isBazaarItem(stack: ItemStack) = isBazaarItem(stack.getInternalName()) |
