Skip to content

Commit e1f6bb8

Browse files
Fix Javadoc comments inconsistent with method signature
1 parent 358ecaf commit e1f6bb8

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

src/main/java/eu/europa/ted/efx/interfaces/MarkupGenerator.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,7 @@ public interface MarkupGenerator {
5151
* Given a body (main content) and a set of fragments, this method returns the full content of the
5252
* target template file.
5353
*
54-
* @param variables the variables to be included in the template file.
55-
* @param functions the functions to be included in the template file.
54+
* @param globals the global variables and functions to be included in the template file.
5655
* @param content the body (main content) of the template.
5756
* @param fragments the fragments to be included in the template file.
5857
* @return the full content of the target template file.

src/main/java/eu/europa/ted/efx/model/variables/Identifier.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,10 @@ public abstract class Identifier implements ParsedEntity {
2424
public final Class<? extends EfxDataType> dataType;
2525

2626
/**
27-
* Creates an Identifier with the given name and expressions.
28-
* The Identifier's data type is inferred from the reference expression.
27+
* Creates an Identifier with the given name and type.
2928
*
30-
* @param name The name of the identifier.
31-
* @param declarationExpression The expression that should be used to declare the Identifier at runtime.
32-
* @param referenceExpression The expression that should be used to reference the identifier.
29+
* @param name The name of the identifier.
30+
* @param dataType The data type of the identifier.
3331
*/
3432
protected Identifier(String name, Class<? extends EfxDataType> dataType) {
3533
this.name = name;

0 commit comments

Comments
 (0)