Skip to content

Commit

Permalink
Update ByteBuddy.java (#1739)
Browse files Browse the repository at this point in the history
* Update ByteBuddy.java

This pull request fixes a typo in the JavaDoc of the ByteBuddy class. The word "ava types" was incorrectly used instead of "Java types" in the following documentation:

/**
 * 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 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.
 *
 * @param methodGraphCompiler The method graph compiler to use for analyzing the instrumented type.
 * @return A new Byte Buddy instance that uses the supplied method graph compiler.
 */

* Update ByteBuddy.java
  • Loading branch information
NikunjPatel31 authored Dec 25, 2024
1 parent d90b774 commit 63e309d
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 63e309d

Please sign in to comment.