Skip to content

Commit

Permalink
remove unused property
Browse files Browse the repository at this point in the history
Signed-off-by: Aramis Sennyey <[email protected]>
  • Loading branch information
aramissennyeydd committed Jan 4, 2025
1 parent 8ec37cc commit 7795f0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,7 @@ export class CacheableOperationPlugin implements IPhasedCommandPlugin {

for (const [operation, record] of recordByOperation) {
const stateHash: string = (record as OperationExecutionRecord).calculateStateHash({
inputsSnapshot,
buildCacheConfiguration
inputsSnapshot
});
const { associatedProject, associatedPhase, runner, settings: operationSettings } = operation;
if (!associatedProject || !associatedPhase || !runner) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -350,10 +350,7 @@ export class OperationExecutionRecord implements IOperationRunnerContext, IOpera
}
}

public calculateStateHash(options: {
inputsSnapshot: IInputsSnapshot;
buildCacheConfiguration: BuildCacheConfiguration;
}): string {
public calculateStateHash(options: { inputsSnapshot: IInputsSnapshot }): string {
if (!this._stateHash) {
const { inputsSnapshot } = options;

Expand Down

0 comments on commit 7795f0f

Please sign in to comment.