Skip to content

Commit

Permalink
Removed stray print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
cmnrd committed Sep 22, 2023
1 parent 4aa386d commit 18d8321
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 18d8321

Please sign in to comment.