Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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";
}

Expand Down