Skip to content

Commit

Permalink
Remove ProjectData::build_info_path
Browse files Browse the repository at this point in the history
Summary: As title. It is no longer needed.

Reviewed By: jcpetruzza

Differential Revision: D60885891

fbshipit-source-id: 5f5004fb78fe82b0dff5a6e90d35c108ec5caa4d
  • Loading branch information
alanz authored and facebook-github-bot committed Aug 7, 2024
1 parent ff7a7af commit 3b400e3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
4 changes: 0 additions & 4 deletions crates/base_db/src/fixture.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1126,7 +1126,6 @@ bar() -> ?FOO.
"/",
),
deps_ebins: [],
build_info_path: None,
otp_project_id: Some(
ProjectId(
1,
Expand Down Expand Up @@ -1175,7 +1174,6 @@ bar() -> ?FOO.
"/opt/lib",
),
deps_ebins: [],
build_info_path: None,
otp_project_id: Some(
ProjectId(
1,
Expand Down Expand Up @@ -1287,7 +1285,6 @@ foo() -> ?BAR.
"/",
),
deps_ebins: [],
build_info_path: None,
otp_project_id: Some(
ProjectId(
1,
Expand Down Expand Up @@ -1316,7 +1313,6 @@ foo() -> ?BAR.
"/",
),
deps_ebins: [],
build_info_path: None,
otp_project_id: Some(
ProjectId(
1,
Expand Down
2 changes: 0 additions & 2 deletions crates/base_db/src/input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ pub struct ProjectData {
pub source_roots: Vec<SourceRootId>,
pub root_dir: AbsPathBuf,
pub deps_ebins: Vec<AbsPathBuf>,
pub build_info_path: Option<AbsPathBuf>,
pub otp_project_id: Option<ProjectId>,
pub app_roots: AppRoots,
pub eqwalizer_config: EqwalizerConfig,
Expand Down Expand Up @@ -347,7 +346,6 @@ impl<'a> ProjectApps<'a> {
source_roots: project_source_roots,
root_dir: project.root().into_owned(),
deps_ebins: project.deps_ebins(),
build_info_path: project.build_info_file(),
otp_project_id: self.otp_project_id,
app_roots,
eqwalizer_config: project.eqwalizer_config.clone(),
Expand Down

0 comments on commit 3b400e3

Please sign in to comment.