myRevProps.put(SVNRevisionProperty.LOG, myComment);
}
if (myDate != null) {
myRevProps.put(SVNRevisionProperty.DATE, SVNDate.formatDate(myDate));
}
SVNLogEntry logEntry = new SVNLogEntry(myPaths, myRevision, myRevProps, myHasChildren);
myLogEntryHandler.handleLogEntry(logEntry);
if (logEntry.hasChildren()) {
myNestLevel++;
}
if (logEntry.getRevision() < 0) {
myNestLevel = myNestLevel <= 0 ? 0 : myNestLevel -1;
}
}
myPaths = null;
myRevProps = null;