-
-
Notifications
You must be signed in to change notification settings - Fork 208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Backend: TimeLimitedCache #2729
Backend: TimeLimitedCache #2729
Conversation
since the whole of lorenz event is deprecated, there is no need to use the function. this is just an additional marker that when using deprecated functions you want to migrate them over to skyhanni event, like every other instance of lorenz event as well |
i feel like you should only actually be able to see that LorenzEvent is deprecated if you want to create a new event. if you want to cancel an already existing event (such as cancelling a message with LorenzChatEvent), you shouldnt be told that the function to cancel the event is deprecated. |
This pull request has conflicts with the base branch "beta". Please resolve those so we can test out your changes. |
# Conflicts: # src/main/java/at/hannibal2/skyhanni/utils/TimeLimitedCache.kt # src/main/java/at/hannibal2/skyhanni/utils/TimeLimitedSet.kt
Conflicts have been resolved! 🎉 |
This pull request has conflicts with the base branch "beta". Please resolve those so we can test out your changes. |
…-cache-map # Conflicts: # src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonHighlightClickedBlocks.kt
Conflicts have been resolved! 🎉 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lets discuss
Signed-off-by: Empa <[email protected]>
…into backend/time-limited-cache-map
One or more Detekt Failures were detected:
|
src/main/java/at/hannibal2/skyhanni/features/fishing/FishingTimer.kt
Outdated
Show resolved
Hide resolved
3f54ead
to
f24b65e
Compare
What
Changes TimeLimitedCache to extend MutableMap instead of Iterator. Also removed some deprecated functions, and deprecated some other ones. Also removed the deprecation on .cancel() inside LorenzEvent
Changelog Technical Details
TimeLimitedCache
to extendMutableMap
instead ofIterator
. - Empa