Skip to content

Commit

Permalink
Merge pull request #471 from gabrielpedepera/doc/470-remote-race-cond…
Browse files Browse the repository at this point in the history
…itions

Removes support for `:race_conditions` option
  • Loading branch information
jeremyjh authored Oct 24, 2022
2 parents af3ae2f + 8eb3125 commit 1de32e1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 31 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def project do
app: :my_app,
version: "0.0.1",
deps: deps,
dialyzer: [flags: ["-Wunmatched_returns", :error_handling, :race_conditions, :underspecs]]
dialyzer: [flags: ["-Wunmatched_returns", :error_handling, :underspecs]]
]
end
```
Expand All @@ -249,7 +249,7 @@ def project do
deps: deps,
dialyzer: [
plt_add_apps: [:mnesia],
flags: [:unmatched_returns, :error_handling, :race_conditions, :no_opaque],
flags: [:unmatched_returns, :error_handling, :no_opaque],
paths: ["_build/dev/lib/my_app/ebin", "_build/dev/lib/foo/ebin"]
]
]
Expand Down
1 change: 0 additions & 1 deletion lib/dialyxir/warnings.ex
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ defmodule Dialyxir.Warnings do
Dialyxir.Warnings.OverlappingContract,
Dialyxir.Warnings.PatternMatch,
Dialyxir.Warnings.PatternMatchCovered,
Dialyxir.Warnings.RaceCondition,
Dialyxir.Warnings.RecordConstruction,
Dialyxir.Warnings.RecordMatching,
Dialyxir.Warnings.UnknownBehaviour,
Expand Down
28 changes: 0 additions & 28 deletions lib/dialyxir/warnings/race_condition.ex

This file was deleted.

0 comments on commit 1de32e1

Please sign in to comment.