Skip to content

Commit

Permalink
[formatting] Bugfix.
Browse files Browse the repository at this point in the history
  • Loading branch information
petervdonovan committed Jun 13, 2022
1 parent 9d52e11 commit 8f6c048
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion org.lflang.tests/src/org/lflang/tests/TestRegistry.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ public TestMap() {
public Set<LFTest> getTests(Target t, TestCategory c) {
return this.map.get(t).get(c);
}

}

/**
Expand Down
2 changes: 1 addition & 1 deletion org.lflang/src/org/lflang/ast/ToText.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public String caseType(Type type) {

@Override
public String caseTypeParm(TypeParm t) {
if (t.getCode() != null) return doSwitch(t);
if (t.getCode() != null) return doSwitch(t.getCode());
return ToLf.instance.caseTypeParm(t);
}

Expand Down

0 comments on commit 8f6c048

Please sign in to comment.