This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git
The following commit(s) were added to refs/heads/master by this push:
new 8dbe33e00 fix typo in method name geStringtVarStringArgs in
MethodFixtures (#1541)
8dbe33e00 is described below
commit 8dbe33e0020bc13f240f7ba06d84f4aa92831568
Author: IcoreE <[email protected]>
AuthorDate: Wed Dec 24 05:26:51 2025 +0800
fix typo in method name geStringtVarStringArgs in MethodFixtures (#1541)
---
src/test/java/org/apache/commons/lang3/function/MethodFixtures.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/src/test/java/org/apache/commons/lang3/function/MethodFixtures.java
b/src/test/java/org/apache/commons/lang3/function/MethodFixtures.java
index 5b28efbaa..61568c554 100644
--- a/src/test/java/org/apache/commons/lang3/function/MethodFixtures.java
+++ b/src/test/java/org/apache/commons/lang3/function/MethodFixtures.java
@@ -73,7 +73,7 @@ static Method getMethodForGetStringThrowsUnchecked() throws
NoSuchMethodExceptio
}
static Method getMethodForGetStringVarStringArgs() throws
NoSuchMethodException, SecurityException {
- return getDeclaredMethod("geStringtVarStringArgs", String[].class);
+ return getDeclaredMethod("getStringVarStringArgs", String[].class);
}
static Method getMethodForSetString1Arg() throws NoSuchMethodException,
SecurityException {
@@ -118,7 +118,7 @@ public static String staticGetString() {
private String[] valueArray;
- public String geStringtVarStringArgs(final String... strings) {
+ public String getStringVarStringArgs(final String... strings) {
return "XYZ";
}