Skip to content

Commit

Permalink
Update ByteBuddy.java class's with( ) method description
Browse files Browse the repository at this point in the history
In the description of with
( ), there was typing error in the following sentence - "Creating a method graph is a rather expensive operation and more efficient strategies might exist for certain types or ava types that are created by alternative JVM languages". Here there should be "java types" instead of "ava types"
  • Loading branch information
NikunjPatel31 authored Dec 24, 2024
1 parent d90b774 commit ad1a420
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion byte-buddy-dep/src/main/java/net/bytebuddy/ByteBuddy.java
Original file line number Diff line number Diff line change
Expand Up @@ -1308,7 +1308,7 @@ public ByteBuddy with(Implementation.Context.Factory implementationContextFactor
* Creates a new configuration where the {@link MethodGraph.Compiler} is used for creating a {@link MethodGraph}
* of the instrumented type. A method graph is a representation of a type's virtual methods, including all information
* on bridge methods that are inserted by the Java compiler. Creating a method graph is a rather expensive operation
* and more efficient strategies might exist for certain types or ava types that are created by alternative JVM
* and more efficient strategies might exist for certain types or java types that are created by alternative JVM
* languages. By default, a general purpose method graph compiler is used that uses the information that is exposed
* by the generic type information that is embedded in any class file.
*
Expand Down

0 comments on commit ad1a420

Please sign in to comment.