}
case SVNLogEntryPath.TYPE_REPLACED: {
SVNDirEntry dirEntry = this.repository.info( entryPath.getPath(), -1 );
char type = ( dirEntry.getKind() == SVNNodeKind.DIR ) ? 'D' : 'F';
Replaced replaced = new Replaced( type, entryPath.getPath(), logEntry.getRevision());
scmLogEntry.addAction( replaced );
break;
}
}
}