/* 123 */ if (handler == null)
/* 124 */ throw new IllegalArgumentException("Null handler");
/* 125 */ if (visitor == null) {
/* 126 */ throw new IllegalArgumentException("Null visitor");
/* */ }
/* 128 */ VisitorAttributes attributes = visitor.getAttributes();
/* 129 */ boolean includeRoot = attributes.isIncludeRoot();
/* 130 */ boolean leavesOnly = attributes.isLeavesOnly();
/* 131 */ boolean ignoreErrors = attributes.isIgnoreErrors();
/* 132 */ boolean includeHidden = attributes.isIncludeHidden();
/* 133 */ VirtualFileFilter recurseFilter = attributes.getRecurseFilter();
/* 134 */ visit(handler, visitor, includeRoot, leavesOnly, ignoreErrors, includeHidden, recurseFilter);
/* */ }