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