Skip to content

Commit

Permalink
Remove unused original root path attribute on ProtoFileListing
Browse files Browse the repository at this point in the history
  • Loading branch information
ascopes committed Apr 15, 2024
1 parent 713a6fd commit 747d0e7
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ public Optional<ProtoFileListing> extractProtoFiles(Path zipPath) throws IOExcep
var listing = ImmutableProtoFileListing
.builder()
.addAllProtoFiles(targetFiles)
.originalRoot(zipPath)
.protoFilesRoot(extractionRoot)
.build();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@
@Immutable
public interface ProtoFileListing {

Path getOriginalRoot();

Path getProtoFilesRoot();

Set<Path> getProtoFiles();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ public Optional<ProtoFileListing> createProtoFileListing(Path path) throws IOExc
.builder()
.addAllProtoFiles(protoFiles)
.protoFilesRoot(path)
.originalRoot(path)
.build());
}
}
Expand Down

0 comments on commit 747d0e7

Please sign in to comment.