Skip to content

Commit

Permalink
Bump byte-buddy from 1.10.19 to 1.10.22 (#176)
Browse files Browse the repository at this point in the history
* Bump byte-buddy from 1.10.19 to 1.10.22

Bumps [byte-buddy](https://github.com/raphw/byte-buddy) from 1.10.19 to 1.10.22.
- [Release notes](https://github.com/raphw/byte-buddy/releases)
- [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md)
- [Commits](raphw/byte-buddy@byte-buddy-1.10.19...byte-buddy-1.10.22)

* fix PoolStrategy now has two methods to implement

* Also bump byte-buddy-agent from 1.10.19 to 1.10.22

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: Simon Baslé <sbasle@vmware.com>
  • Loading branch information
dependabot-preview[bot] and simonbasle committed Mar 23, 2021
1 parent 727263a commit 62bf352
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions agent/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ dependencies {
compileOnly 'com.google.auto.service:auto-service-annotations:1.0-rc7'
annotationProcessor 'com.google.auto.service:auto-service:1.0-rc7'

implementation 'net.bytebuddy:byte-buddy:1.10.19'
implementation 'net.bytebuddy:byte-buddy-agent:1.10.19'
implementation 'net.bytebuddy:byte-buddy:1.10.22'
implementation 'net.bytebuddy:byte-buddy-agent:1.10.22'

compileOnly 'io.projectreactor:reactor-core:3.2.5.RELEASE'
compileOnly 'io.reactivex.rxjava2:rxjava:2.2.18'
Expand Down
9 changes: 4 additions & 5 deletions agent/src/main/java/reactor/blockhound/BlockHound.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,10 @@ private static final class BlockHoundPoolStrategy implements PoolStrategy {

private BlockHoundPoolStrategy() { }

//FIXME prepare for a bump in ByteBuddy
// @Override
// public TypePool typePool(ClassFileLocator classFileLocator, ClassLoader classLoader, String name) {
// return typePool(classFileLocator, classLoader);
// }
@Override
public TypePool typePool(ClassFileLocator classFileLocator, ClassLoader classLoader, String name) {
return typePool(classFileLocator, classLoader);
}

@Override
public TypePool typePool(ClassFileLocator classFileLocator, ClassLoader classLoader) {
Expand Down

0 comments on commit 62bf352

Please sign in to comment.