flowable / flowable/flowable-engine
FlowableMultiInstanceActivityEventImpl#isSequential() typo issue
- Dominant language
- Java
- Stars
- 9.5k
- Forks
- 2.9k
- Avg merge
- 7h 8m
- Merged PRs (30d)
- 2
Description
The method `isSequential` return false regardless of the value set.
```java
public class FlowableMultiInstanceActivityEventImpl extends FlowableActivityEventImpl implements FlowableMultiInstanceActivityEvent{
protected boolean sequential;
public FlowableMultiInstanceActivityEventImpl(FlowableEngineEventType type) {
super(type);
}
public void setSequential(boolean sequential) {
this.sequential = sequential;
}
@Override
public boolean isSequential() {
return false;
}
}
```
Contributor guide
No contributing guide indexed for this repository
Research direction
Locate FlowableMultiInstanceActivityEventImpl and inspect the setSequential(boolean) and isSequential() methods. Verify the event reports the value assigned through the setter, then run the relevant existing Java test suite or add coverage for both sequential values if the project has no matching test.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- java
- Domain
- backend
- Issue type
- Bug
- Difficulty
- 1/5
- Estimated time
- Under an hour
- Activity status
- Active
- Clarity
- Clearly specified
- Newbie friendliness
- 88/100