Skip to content

Commit

Permalink
Merge pull request #2021 from lf-lang/cleanup
Browse files Browse the repository at this point in the history
Removed stray print statement
  • Loading branch information
lhstrh authored Sep 23, 2023
2 parents ceea7f9 + 18d8321 commit ba00299
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions core/src/main/java/org/lflang/AttributeUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,6 @@ public static Attribute findAttributeByName(EObject node, String name) {
*/
public static List<Attribute> findAttributesByName(EObject node, String name) {
List<Attribute> attrs = getAttributes(node);
if (!attrs.isEmpty()) {
System.out.println("Fun");
}
return attrs.stream()
.filter(
it ->
Expand Down

0 comments on commit ba00299

Please sign in to comment.