Skip to content

Commit

Permalink
Reduce method access
Browse files Browse the repository at this point in the history
  • Loading branch information
pzygielo committed Nov 22, 2024
1 parent 77fe47e commit 8105f7d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public static Properties toProperties(String keyvalPairs, String separator, Prop
return props;
}

public static List<String> breakToList(String value, String separator) {
static List<String> breakToList(String value, String separator) {
StringTokenizer token = new StringTokenizer(value, separator, false);
List<String> retv = new ArrayList<>();
while (token.hasMoreElements()) {
Expand Down

0 comments on commit 8105f7d

Please sign in to comment.