We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3b44ae commit 2ca47a7Copy full SHA for 2ca47a7
crates/fj-core/src/layers/layers.rs
@@ -41,10 +41,8 @@ impl Layers {
41
42
/// Construct an instance of `Layers`, using the provided configuration
43
pub fn with_validation_config(config: ValidationConfig) -> Self {
44
- let validation = Layer::new(Validation::with_validation_config(config));
45
-
46
Self {
47
- validation,
+ validation: Layer::new(Validation::with_validation_config(config)),
48
..Default::default()
49
}
50
0 commit comments