Skip to content

Commit

Permalink
merge master into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
AnakinRaW committed Jun 1, 2024
2 parents c246b79 + e783716 commit d397543
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,4 +120,11 @@ protected override void DisposeManagedResources()
base.DisposeManagedResources();
_runner.Dispose();
}

/// <inheritdoc />
protected override void DisposeManagedResources()

Check failure on line 125 in src/CommonUtilities.SimplePipeline/src/Pipelines/ParallelProducerConsumerPipeline.cs

View workflow job for this annotation

GitHub Actions / test / Build & Test (ubuntu-latest)

Type 'ParallelProducerConsumerPipeline' already defines a member called 'DisposeManagedResources' with the same parameter types

Check failure on line 125 in src/CommonUtilities.SimplePipeline/src/Pipelines/ParallelProducerConsumerPipeline.cs

View workflow job for this annotation

GitHub Actions / Build & Test (ubuntu-latest)

Type 'ParallelProducerConsumerPipeline' already defines a member called 'DisposeManagedResources' with the same parameter types

Check failure on line 125 in src/CommonUtilities.SimplePipeline/src/Pipelines/ParallelProducerConsumerPipeline.cs

View workflow job for this annotation

GitHub Actions / Build & Test (windows-latest)

Type 'ParallelProducerConsumerPipeline' already defines a member called 'DisposeManagedResources' with the same parameter types

Check failure on line 125 in src/CommonUtilities.SimplePipeline/src/Pipelines/ParallelProducerConsumerPipeline.cs

View workflow job for this annotation

GitHub Actions / test / Build & Test (windows-latest)

Type 'ParallelProducerConsumerPipeline' already defines a member called 'DisposeManagedResources' with the same parameter types
{
base.DisposeManagedResources();
_runner.Dispose();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,11 @@ protected override void DisposeManagedResources()
base.DisposeManagedResources();
_buildRunner.Dispose();
}

/// <inheritdoc />
protected override void DisposeManagedResources()

Check failure on line 91 in src/CommonUtilities.SimplePipeline/src/Pipelines/SimplePipeline.cs

View workflow job for this annotation

GitHub Actions / test / Build & Test (ubuntu-latest)

Type 'SimplePipeline<TRunner>' already defines a member called 'DisposeManagedResources' with the same parameter types

Check failure on line 91 in src/CommonUtilities.SimplePipeline/src/Pipelines/SimplePipeline.cs

View workflow job for this annotation

GitHub Actions / Build & Test (ubuntu-latest)

Type 'SimplePipeline<TRunner>' already defines a member called 'DisposeManagedResources' with the same parameter types

Check failure on line 91 in src/CommonUtilities.SimplePipeline/src/Pipelines/SimplePipeline.cs

View workflow job for this annotation

GitHub Actions / Build & Test (windows-latest)

Type 'SimplePipeline<TRunner>' already defines a member called 'DisposeManagedResources' with the same parameter types

Check failure on line 91 in src/CommonUtilities.SimplePipeline/src/Pipelines/SimplePipeline.cs

View workflow job for this annotation

GitHub Actions / test / Build & Test (windows-latest)

Type 'SimplePipeline<TRunner>' already defines a member called 'DisposeManagedResources' with the same parameter types
{
base.DisposeManagedResources();
_buildRunner.Dispose();
}
}

0 comments on commit d397543

Please sign in to comment.