Skip to content

Commit

Permalink
edit
Browse files Browse the repository at this point in the history
  • Loading branch information
usfalami committed Aug 28, 2024
1 parent 971f506 commit 0ddb7b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/usf/jquery/core/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public static <T> String joinAndDelemit(String delemiter, String before, String

public static <T> T[] arrayJoin(T[] arr, T o) {
var res = copyOf(arr, arr.length+1);
res[arr.length+1] = o;
res[arr.length] = o;
return res;
}

Expand Down

0 comments on commit 0ddb7b1

Please sign in to comment.