Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/java/com/king/tratt/EventProcessorBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import com.king.tratt.tdl.TdlBuilder;

/**
* Let's you configure the behavior of a EventProcessor.
* Lets you configure the behavior of a EventProcessor.
*/
public final class EventProcessorBuilder {
final TdlBuilder tdlBuilder = Tdl.newBuilder();
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/king/tratt/TdlValidator.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ private void validateSequence(Environment env, Sequence sequence, String nodePat
}

/*
* Validate "set" field in all checkPoint first, as the remaining
* checkpoint field validations depends on env.sequenceVariables is set
* Validate "set" field in all checkPoints first, as the remaining
* checkpoint field validations depend on env.sequenceVariables is set
* correctly.
*/
List<CheckPoint> checkPoints = sequence.getCheckPoints();
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/king/tratt/tdl/TdlInternal.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
class TdlInternal {

public String comment = "";
/* Needs to be a LinkedHasSet to guarantee order AND no duplicates */
/* Needs to be a LinkedHashSet to guarantee order AND no duplicates */
public Set<String> variables = new LinkedHashSet<>();
public List<SequenceInternal> sequences = new ArrayList<>();

Expand Down