- while (true) {
- try { unlink_!(); return; }
- catch {
- case SystemError(ENOENT, _) => return;
- case SystemError(EISDIR, _) => ok;
- }
- try { rmdir_!(); return; }
- catch {
- case SystemError(ENOENT, _) => return;
- case SystemError(ENOTDIR, _) => ok;
- }
+ try { unlink_!(); return; }
+ catch {
+ case SystemError(ENOENT, _) => return;
+ case SystemError(EISDIR, _) =>
+ try { rmdir_!(); return; }
+ catch { case SystemError(ENOENT, _) => return; }