Skip to content

Commit

Permalink
temporary workaround for gender issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael5601 committed Jun 24, 2024
1 parent d22f94c commit b1b3962
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
*******************************************************************************/
package org.eclipse.core.internal.localstore;

import org.eclipse.core.filesystem.ZipFileUtil;
import org.eclipse.core.internal.resources.Container;
import org.eclipse.core.internal.resources.File;
import org.eclipse.core.internal.resources.Folder;
Expand Down Expand Up @@ -247,7 +248,7 @@ protected boolean synchronizeGender(UnifiedTreeNode node, Resource target) throw
return false;
}
} else {
if (!node.isFolder()) {
if (!node.isFolder() && !ZipFileUtil.isOpenZipFile(target.getStore())) {
folderToFile(node, target);
resourceChanged = true;
return false;
Expand Down

0 comments on commit b1b3962

Please sign in to comment.