Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Christian Menard <[email protected]>
  • Loading branch information
lhstrh and cmnrd authored Jun 30, 2024
1 parent be6f740 commit adfb734
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/org/lflang/target/TargetConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public TargetConfig(Resource resource, GeneratorArguments args, MessageReporter
}

/**
* If the federate that target configuration applies to is imported, merge target properties
* If the federate that the target configuration applies to is imported, merge target properties
* declared in the file that it was imported from.
*
* @param importedResource The resource in which the target configuration is to be loaded from.
Expand Down Expand Up @@ -347,7 +347,7 @@ public String listOfRegisteredProperties() {
.collect(Collectors.joining(", "));
}

/** Return the target properties that are have been assigned a value. */
/** Return the target properties that have been assigned a value. */
public List<TargetProperty<?, ?>> getAssignedProperties() {
return this.properties.keySet().stream()
.filter(this::isSet)
Expand Down

0 comments on commit adfb734

Please sign in to comment.