mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2024-11-14 14:33:57 +01:00
Got a weird crash profiling the slideshow machine
- Seems to be a race condition, try/catch should be good enough
This commit is contained in:
parent
40bdbc7048
commit
4b49763e0c
@ -31,9 +31,13 @@ public class CrafterCTBehaviour extends ConnectedTextureBehaviour {
|
|||||||
return false;
|
return false;
|
||||||
if (input1.data.isEmpty() || input2.data.isEmpty())
|
if (input1.data.isEmpty() || input2.data.isEmpty())
|
||||||
return false;
|
return false;
|
||||||
|
try {
|
||||||
if (pos.add(input1.data.get(0))
|
if (pos.add(input1.data.get(0))
|
||||||
.equals(otherPos.add(input2.data.get(0))))
|
.equals(otherPos.add(input2.data.get(0))))
|
||||||
return true;
|
return true;
|
||||||
|
} catch (IndexOutOfBoundsException e) {
|
||||||
|
// race condition. data somehow becomes empty between the last 2 if statements
|
||||||
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user