Skip to content

Commit

Permalink
Polish: Address string concat within .append() issue in MockDaoStorage
Browse files Browse the repository at this point in the history
  • Loading branch information
nealeu committed Dec 28, 2023
1 parent 03acd89 commit 780d72b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ public String getItemPath(Item item) {

// hierarchy
for (String part : hierarchy)
path.append("/" + part);
path.append('/').append(part);

return path.toString();
}
Expand Down

0 comments on commit 780d72b

Please sign in to comment.