-
Notifications
You must be signed in to change notification settings - Fork 220
Fix generics #634
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
Closed
Closed
Fix generics #634
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
5431289
chore(deps): bump micrometer-core from 1.7.4 to 1.7.5 (#606)
dependabot[bot] 30dcf72
fix: re-schedule generics (#614)
csviri f9ee9b2
chore(deps): bump spring-boot.version from 2.5.5 to 2.5.6 (#617)
dependabot[bot] fb15a1e
chore(deps): bump awaitility from 4.1.0 to 4.1.1
dependabot[bot] f188473
fix: prevent double registration of same CR with different controllers
metacosm b437fef
Informer based CustomResourceEventSource and caching (#581)
csviri 6a3503a
chore: update version to 2.0.0-SNAPSHOT
metacosm f4b6b7f
Reschedule delete (#600)
csviri 1c9f257
Refined Interface of `EventSource` and `EventSourceManager` (#597)
csviri cb62f6c
Removing events from context (#596)
csviri 7fc1c64
fix: cache handling on update (#604)
csviri 60660ed
feat: Only one scheduled event (re-schedul / retry) at one time (#609)
csviri bea733d
feat: Cloner interface for Custom Resource instead of ObjectMapper (#…
csviri 1a3558b
fix: EventSourceManager and ResourceController interface enhancements…
csviri 8199a05
feat!: adapt monitoring code to new implementation
metacosm a5c481b
feat: removing Event using DefaultEvent instead, renamed DefaultEvent…
csviri d244948
refactor!: replace Closeable by explicit Stoppable interface
metacosm d857aca
refactor: fix generics
metacosm 77b6556
chore: clean-up
metacosm ec53e03
fix: potential performance issue
metacosm fba211e
chore: clean-up
metacosm 81412a6
fix: more generics fixes
metacosm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: potential performance issue
- Loading branch information
commit ec53e03907cc2756cb359cc8e8ec48cb8113a60e
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Intellij was complaning for me too about this, but not undertand why would this have better performance.
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.
I guess
removeAll
repeatedly callscontains
on the whole passed collection, while removing one by one only needs to do it for each elements?