Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
nettoyeurny committed Oct 9, 2011
1 parent 6443fe8 commit 1b13c02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/org/puredata/core/utils/IoUtils.java
Expand Up @@ -79,8 +79,8 @@ public static List<File> extractZipResource(InputStream in, File directory, bool
directory.mkdirs();
while ((entry = zin.getNextEntry()) != null) {
File file = new File(directory, entry.getName());
files.add(file);
if (overwrite || !file.exists()) {
files.add(file);
if (entry.isDirectory()) {
file.mkdirs();
} else {
Expand Down

0 comments on commit 1b13c02

Please sign in to comment.