-
Notifications
You must be signed in to change notification settings - Fork 1k
make internal indy-ready #14646
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
Merged
Merged
make internal indy-ready #14646
Changes from 10 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
c775072
internal-class-loader
SylvainJuge 72edf42
internal-eclipse-osgi-3.6
SylvainJuge a8cd4f7
internal-reflection
SylvainJuge 6ac9fb4
internal-url-class-loader
SylvainJuge fd0069c
revert changes for integration tests
SylvainJuge 7b443bd
keep changes to the advice migration
SylvainJuge 4748664
Merge branch 'main' of github.com:open-telemetry/opentelemetry-java-i…
SylvainJuge 31d3ac6
Merge branch 'main' of github.com:open-telemetry/opentelemetry-java-i…
SylvainJuge 8835bc3
add comment forced inline instrumentation
SylvainJuge 7c21b1c
Merge branch 'main' of github.com:open-telemetry/opentelemetry-java-i…
SylvainJuge a8bcf29
Merge branch 'main' of github.com:open-telemetry/opentelemetry-java-i…
SylvainJuge 182cb53
post-review changes
SylvainJuge 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
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
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
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
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
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
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
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
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.
Both the
BootDelegationInstrumentationandLoadInjectedClassInstrumentationenforce inlining, even if indy is enabled. This is done in thetransformmethod above. We do this, to avoid recursion problems with the indy bootstrap.For this reason they should not be converted to the
@AssignReturnednotation.Interesting that your change doesn't cause a test failure though, I would have expected the
@AssignReturnedannotations to not work, but apparently they do.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.
From what I remember,
@AssignReturnedusage is completely independent of inlining the code or not, so this is more about code style and consistency here.