Skip to content

Commit ed0718b

Browse files
committed
Added distribution files for v1.2.3.
1 parent 65a7e97 commit ed0718b

6 files changed

Lines changed: 3 additions & 3 deletions

File tree

6.53 MB
Binary file not shown.
3.23 MB
Binary file not shown.
929 KB
Binary file not shown.
1.95 MB
Binary file not shown.
1.09 MB
Binary file not shown.

org.modeldriven.fuml/src/main/java/fUML/Semantics/CommonBehaviors/Communications/EventOccurrence.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ protected void doSend() {
3232

3333
public abstract boolean match(fUML.Syntax.CommonBehaviors.Communications.Trigger trigger);
3434

35-
public boolean matchAny(fUML.Syntax.CommonBehaviors.Communications.TriggerList triggers) {
35+
public boolean matchAny(fUML.Syntax.CommonBehaviors.Communications.TriggerList triggers) {
3636
// Check that at least one of the given triggers is matched by this
3737
// event occurrence.
3838

3939
boolean matches = false;
4040
int i = 1;
41-
while(!matches & i <= triggers.size()){
42-
if(this.match(triggers.get(i-1))){
41+
while(!matches & i <= triggers.size()) {
42+
if(this.match(triggers.get(i-1))) {
4343
matches = true;
4444
}
4545
i = i + 1;

0 commit comments

Comments
 (0)