Skip to content

Commit

Permalink
add a new CRT() to StringUtils (#777)
Browse files Browse the repository at this point in the history
Fix bug with StringUtils()
  • Loading branch information
sbSteveK authored Apr 11, 2024
1 parent 10b0791 commit b9acd28
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
package software.amazon.awssdk.crt.utils;

import software.amazon.awssdk.crt.CRT;

public class StringUtils {
static {
new CRT();
};

/**
* Returns a new String composed of copies of the CharSequence elements joined together with a copy of the specified delimiter.
* Like `Strings.join()` but works on Android before API 26.
Expand Down

0 comments on commit b9acd28

Please sign in to comment.