Skip to content

Commit

Permalink
Remove patch fields from git repo source.json
Browse files Browse the repository at this point in the history
Change-Id: I10109d7f225d5c52583f6c6c6325e807263553c6
  • Loading branch information
nachumg committed Jan 24, 2024
1 parent e36b7b8 commit 95d376b
Showing 1 changed file with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,11 +149,6 @@ private static class GitRepoSourceJson {
boolean initSubmodules;
boolean verbose;
String stripPrefix;
List<String> patches;
String patchTool;
List<String> patchArgs;
List<String> patchCmds;
List<String> patchCmdsWin;
}

/**
Expand Down Expand Up @@ -360,11 +355,6 @@ private RepoSpec createGitRepoSpec(
.setInitSubmodules(sourceJson.initSubmodules)
.setVerbose(sourceJson.verbose)
.setStripPrefix(sourceJson.stripPrefix)
.setPatches(sourceJson.patches)
.setPatchTool(sourceJson.patchTool)
.setPatchArgs(sourceJson.patchArgs)
.setPatchCmds(sourceJson.patchCmds)
.setPatchCmdsWin(sourceJson.patchCmdsWin)
.build();
}

Expand Down

0 comments on commit 95d376b

Please sign in to comment.