flowable / flowable/flowable-engine

FlowableMultiInstanceActivityEventImpl#isSequential() typo issue

Open Beginner friendly
#4,268 0 comments 0 reactions 0 assignees View on GitHub
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

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.