Skip to content

Commit

Permalink
Remove visibility of parse method
Browse files Browse the repository at this point in the history
  • Loading branch information
belugabehr committed Sep 20, 2023
1 parent cf16333 commit d998b70
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public static Arn fromString(String arn) {
}
}

public static Arn parseString(String arn) {
private static Arn parseString(String arn) {
int arnColonIndex = arn.indexOf(':');
if (arnColonIndex < 0 || !"arn".equals(arn.substring(0, arnColonIndex))) {
throw new IllegalArgumentException("Does not start with 'arn:'");
Expand Down

0 comments on commit d998b70

Please sign in to comment.