comparison src/org/tmatesoft/hg/util/FileWalker.java @ 580:bd5926e24aa3

Respect unix flags for checkout/revert
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Fri, 19 Apr 2013 20:30:34 +0200
parents 613c883e360e
children e1b29756f901
comparison
equal deleted inserted replaced
579:36e36b926747 580:bd5926e24aa3
39 private final boolean execCap, linkCap; 39 private final boolean execCap, linkCap;
40 private final SessionContext sessionContext; 40 private final SessionContext sessionContext;
41 private RegularFileInfo nextFile; 41 private RegularFileInfo nextFile;
42 private Path nextPath; 42 private Path nextPath;
43 43
44 // TODO FileWalker to accept SessionContext.Source and SessionContext to implement SessionContext.Source
45 // (if it doesn't break binary compatibility)
44 public FileWalker(SessionContext ctx, File dir, Path.Source pathFactory) { 46 public FileWalker(SessionContext ctx, File dir, Path.Source pathFactory) {
45 this(ctx, dir, pathFactory, null); 47 this(ctx, dir, pathFactory, null);
46 } 48 }
47 49
48 /** 50 /**