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 @@ -119,7 +119,7 @@ private static final class View extends AbstractAttributeView implements AclFile

private final FileOwnerAttributeView ownerView;

public View(FileLookup lookup, FileOwnerAttributeView ownerView) {
View(FileLookup lookup, FileOwnerAttributeView ownerView) {
super(lookup);
this.ownerView = checkNotNull(ownerView);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public BasicFileAttributes readAttributes(File file) {
/** Implementation of {@link BasicFileAttributeView}. */
private static final class View extends AbstractAttributeView implements BasicFileAttributeView {

protected View(FileLookup lookup) {
View(FileLookup lookup) {
super(lookup);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ private static final class View extends AbstractAttributeView implements DosFile

private final BasicFileAttributeView basicView;

public View(FileLookup lookup, BasicFileAttributeView basicView) {
View(FileLookup lookup, BasicFileAttributeView basicView) {
super(lookup);
this.basicView = checkNotNull(basicView);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ private final class SymbolicLinkSupplier implements Supplier<SymbolicLink> {

private final JimfsPath target;

protected SymbolicLinkSupplier(JimfsPath target) {
SymbolicLinkSupplier(JimfsPath target) {
this.target = checkNotNull(target);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public FileOwnerAttributeView view(
/** Implementation of {@link FileOwnerAttributeView}. */
private static final class View extends AbstractAttributeView implements FileOwnerAttributeView {

public View(FileLookup lookup) {
View(FileLookup lookup) {
super(lookup);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,7 @@ private static class View extends AbstractAttributeView implements PosixFileAttr
private final BasicFileAttributeView basicView;
private final FileOwnerAttributeView ownerView;

protected View(
FileLookup lookup, BasicFileAttributeView basicView, FileOwnerAttributeView ownerView) {
View(FileLookup lookup, BasicFileAttributeView basicView, FileOwnerAttributeView ownerView) {
super(lookup);
this.basicView = checkNotNull(basicView);
this.ownerView = checkNotNull(ownerView);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public UserDefinedFileAttributeView view(
/** Implementation of {@link UserDefinedFileAttributeView}. */
private static class View extends AbstractAttributeView implements UserDefinedFileAttributeView {

public View(FileLookup lookup) {
View(FileLookup lookup) {
super(lookup);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ static GroupPrincipal createGroupPrincipal(String name) {
/** Base class for {@link UserPrincipal} and {@link GroupPrincipal} implementations. */
private abstract static class NamedPrincipal implements UserPrincipal {

protected final String name;
final String name;

private NamedPrincipal(String name) {
this.name = checkNotNull(name);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ static void assertUriRoundTripsCorrectly(PathType type, String path) {
/** Arbitrary path type with $ as the root, / as the separator and \ as an alternate separator. */
private static final class FakePathType extends PathType {

protected FakePathType() {
FakePathType() {
super(false, '/', '\\');
}

Expand Down