Skip to content

Commit 012411a

Browse files
author
Pavel Rappo
committedMar 1, 2024
8327046: (fs) Files.walk should be clear that depth-first traversal is pre-order
Reviewed-by: alanb, gli
1 parent 98434d6 commit 012411a

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed
 

‎src/java.base/share/classes/java/nio/file/Files.java

+13-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2007, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2007, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -3743,7 +3743,7 @@ public static Path writeString(Path path, CharSequence csq, Charset cs, OpenOpti
37433743
// -- Stream APIs --
37443744

37453745
/**
3746-
* Return a lazily populated {@code Stream}, the elements of
3746+
* Returns a lazily populated {@code Stream}, the elements of
37473747
* which are the entries in the directory. The listing is not recursive.
37483748
*
37493749
* <p> The elements of the stream are {@link Path} objects that are
@@ -3834,11 +3834,12 @@ public Path next() {
38343834
}
38353835

38363836
/**
3837-
* Return a {@code Stream} that is lazily populated with {@code
3837+
* Returns a {@code Stream} that is lazily populated with {@code
38383838
* Path} by walking the file tree rooted at a given starting file. The
3839-
* file tree is traversed <em>depth-first</em>, the elements in the stream
3840-
* are {@link Path} objects that are obtained as if by {@link
3841-
* Path#resolve(Path) resolving} the relative path against {@code start}.
3839+
* file tree is traversed <em>depth-first</em> with a directory visited
3840+
* before the entries in that directory. The elements in the stream are
3841+
* {@link Path} objects that are obtained as if by {@link Path#resolve(Path)
3842+
* resolving} the relative path against {@code start}.
38423843
*
38433844
* <p> The {@code stream} walks the file tree as elements are consumed.
38443845
* The {@code Stream} returned is guaranteed to have at least one
@@ -3933,11 +3934,12 @@ public static Stream<Path> walk(Path start,
39333934
}
39343935

39353936
/**
3936-
* Return a {@code Stream} that is lazily populated with {@code
3937+
* Returns a {@code Stream} that is lazily populated with {@code
39373938
* Path} by walking the file tree rooted at a given starting file. The
3938-
* file tree is traversed <em>depth-first</em>, the elements in the stream
3939-
* are {@link Path} objects that are obtained as if by {@link
3940-
* Path#resolve(Path) resolving} the relative path against {@code start}.
3939+
* file tree is traversed <em>depth-first</em> with a directory visited
3940+
* before the entries in that directory. The elements in the stream are
3941+
* {@link Path} objects that are obtained as if by {@link Path#resolve(Path)
3942+
* resolving} the relative path against {@code start}.
39413943
*
39423944
* <p> This method works as if invoking it were equivalent to evaluating the
39433945
* expression:
@@ -3978,7 +3980,7 @@ public static Stream<Path> walk(Path start, FileVisitOption... options) throws I
39783980
}
39793981

39803982
/**
3981-
* Return a {@code Stream} that is lazily populated with {@code
3983+
* Returns a {@code Stream} that is lazily populated with {@code
39823984
* Path} by searching for files in a file tree rooted at a given starting
39833985
* file.
39843986
*

‎test/jdk/java/nio/file/Files/StreamTest.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public class StreamTest {
7575
static boolean supportsSymbolicLinks;
7676
static Path[] level1;
7777
static Path[] all;
78-
static Path[] all_folowLinks;
78+
static Path[] allFollowLinks;
7979

8080
@BeforeClass
8181
void setupTestFolder() throws IOException {
@@ -130,7 +130,7 @@ void setupTestFolder() throws IOException {
130130
tmp = tmp.resolve("lnDir2");
131131
set.add(tmp);
132132
}
133-
all_folowLinks = set.toArray(new Path[0]);
133+
allFollowLinks = set.toArray(new Path[0]);
134134
}
135135

136136
@AfterClass
@@ -179,7 +179,7 @@ public void testWalkFollowLink() {
179179
// We still want to test the behavior with FOLLOW_LINKS option.
180180
try (Stream<Path> s = Files.walk(testFolder, FileVisitOption.FOLLOW_LINKS)) {
181181
Object[] actual = s.sorted().toArray();
182-
assertEquals(actual, all_folowLinks);
182+
assertEquals(actual, allFollowLinks);
183183
} catch (IOException ioe) {
184184
fail("Unexpected IOException");
185185
}

0 commit comments

Comments
 (0)
Please sign in to comment.