didnt solve all unstable lets, now solved
This commit is contained in:
@ -141,12 +141,12 @@ impl BasicProcess for Process {
|
||||
next_process,
|
||||
} = self
|
||||
{
|
||||
if let Self::RecursiveIdentifier { identifier } = &**next_process
|
||||
&& identifier == id
|
||||
{
|
||||
if let Self::RecursiveIdentifier { identifier } = &**next_process {
|
||||
if identifier == id {
|
||||
return Some(entities);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
None
|
||||
}
|
||||
@ -355,12 +355,12 @@ impl BasicProcess for PositiveProcess {
|
||||
next_process,
|
||||
} = self
|
||||
{
|
||||
if let Self::RecursiveIdentifier { identifier } = &**next_process
|
||||
&& identifier == id
|
||||
{
|
||||
if let Self::RecursiveIdentifier { identifier } = &**next_process {
|
||||
if identifier == id {
|
||||
return Some(entities);
|
||||
}
|
||||
}
|
||||
}
|
||||
None
|
||||
}
|
||||
}
|
||||
|
||||
@ -444,10 +444,8 @@ impl BasicSet for PositiveSet {
|
||||
.identifiers
|
||||
.iter()
|
||||
.filter(|(id, s)| {
|
||||
if let Some(s1) = self.identifiers.get(id)
|
||||
&& s1 == *s
|
||||
{
|
||||
true
|
||||
if let Some(s1) = self.identifiers.get(id) {
|
||||
s1 == *s
|
||||
} else {
|
||||
false
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user