Skip to content

Commit

Permalink
fix: Avoid setting path state in get method [DHIS2-18234]
Browse files Browse the repository at this point in the history
  • Loading branch information
larshelge authored Jan 10, 2025
1 parent 0caa211 commit ca8a28b
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -783,9 +783,7 @@ public String getPath() {

Collections.reverse(pathList);

this.path = PATH_SEP + StringUtils.join(pathList, PATH_SEP);

return this.path;
return PATH_SEP + StringUtils.join(pathList, PATH_SEP);
}

/**
Expand Down

0 comments on commit ca8a28b

Please sign in to comment.