Skip to content

Commit

Permalink
Fix method visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
HttpMarco committed Feb 7, 2024
1 parent eedbe1d commit 3a2efde
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ allprojects {


group = "dev.httpmarco"
version = "1.0.12-SNAPSHOT"
version = "1.0.13-SNAPSHOT"

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public static Object getField(String id, Object value) {
}
}

public void callMethod(Method method, Object object, Object... args) {
public static void callMethod(Method method, Object object, Object... args) {
try {
method.invoke(object, args);
} catch (Exception e) {
Expand Down

0 comments on commit 3a2efde

Please sign in to comment.