* make sure normal File instances are used when renaming (not types like FastFile that cache fs operations)

This commit is contained in:
Reinhard Pointner 2012-02-26 12:29:42 +00:00
parent 12aa612bd4
commit 374206480e
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ public class RenameModel extends MatchModel<Object, File> {
for (int i = 0; i < names.size(); i++) {
if (hasComplement(i)) {
File originalFile = files().get(i);
File originalFile = new File(files().get(i).getAbsolutePath());
FormattedFuture formattedFuture = names.get(i);
StringBuilder nameBuilder = new StringBuilder();