Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public synchronized void close() {
fileSystemState.unregister(this);
}

protected synchronized void checkOpen() {
synchronized void checkOpen() {
if (!open) {
throw new ClosedDirectoryStreamException();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ public JimfsPath createPath(@Nullable Name root, Iterable<Name> names) {
}

/** Returns a path with the given root (or no root, if null) and the given names. */
protected final JimfsPath createPathInternal(@Nullable Name root, Iterable<Name> names) {
final JimfsPath createPathInternal(@Nullable Name root, Iterable<Name> names) {
return new JimfsPath(this, root, names);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public static Subject.Factory<PathSubject, Path> paths() {
private static final LinkOption[] NOFOLLOW_LINKS = {LinkOption.NOFOLLOW_LINKS};

private final Path actual;
protected LinkOption[] linkOptions = FOLLOW_LINKS;
LinkOption[] linkOptions = FOLLOW_LINKS;
private Charset charset = UTF_8;

private PathSubject(FailureMetadata failureMetadata, Path subject) {
Expand Down