1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Comment out setExecutable call which is 1.6 only.

This commit is contained in:
Doug Schaefer 2009-05-04 16:49:50 +00:00
parent d2ba28b75b
commit dae252adb1

View file

@ -153,7 +153,7 @@ public class UntarAction extends ProvisioningAction {
int mode = tarEntry.getMode();
boolean exec = (mode & 0x111) != 0;
boolean execOwner = (mode & 0x11) == 0;
outFile.setExecutable(exec, execOwner);
// outFile.setExecutable(exec, execOwner);
fileList.add(outFile);
}