Skip to content

Commit

Permalink
Making function public
Browse files Browse the repository at this point in the history
  • Loading branch information
britzl committed Oct 17, 2023
1 parent 1817257 commit 262a69e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/main/java/com/defold/extender/ExtenderUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ static List<String> pruneItems(List<String> input, List<String> includePatterns,
return items;
}

static String getRelativePath(File base, File path) {
public static String getRelativePath(File base, File path) {
return base.toURI().relativize(path.toURI()).getPath();
}

Expand Down

0 comments on commit 262a69e

Please sign in to comment.