Skip to content

Commit

Permalink
Remove the graph parameter from updateProjectProtoForJavaDeps.
Browse files Browse the repository at this point in the history
Fixes a lint warning.

PiperOrigin-RevId: 588854720
  • Loading branch information
Googler authored and copybara-github committed Dec 7, 2023
1 parent 25d744c commit 6b98239
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -619,11 +619,11 @@ private static boolean hasJarOrZipExtension(Path p) {
public ProjectProto.Project updateProjectProto(
ProjectProto.Project projectProto, BuildGraphData graph, Context<?> context)
throws BuildException {
return updateProjectProtoForJavaDeps(projectProto, graph);
return updateProjectProtoForJavaDeps(projectProto);
}

private ProjectProto.Project updateProjectProtoForJavaDeps(
ProjectProto.Project projectProto, BuildGraphData graph) throws BuildException {
private ProjectProto.Project updateProjectProtoForJavaDeps(ProjectProto.Project projectProto)
throws BuildException {

Set<ProjectPath> generatedJavaSrcRoots = Sets.newHashSet();

Expand Down

0 comments on commit 6b98239

Please sign in to comment.