Skip to content

Commit

Permalink
remove comment from adding directory asset
Browse files Browse the repository at this point in the history
  • Loading branch information
xpenatan committed May 28, 2024
1 parent 12ee017 commit 2080b91
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ private static void copyFile(FileWrapper source, FileWrapper dest, AssetFilter f

private static void copyDirectory(FileWrapper sourceDir, FileWrapper destDir, AssetFilter filter, ArrayList<Asset> assets) {
if(!filter.accept(destDir.path(), true)) return;
// assets.add(new Asset(destDir, AssetType.Directory));
assets.add(new Asset(destDir, AssetType.Directory));
destDir.mkdirs();
FileWrapper[] files = sourceDir.list();
for(int i = 0, n = files.length; i < n; i++) {
Expand Down

0 comments on commit 2080b91

Please sign in to comment.