Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenLooman committed Jun 9, 2024
1 parent 3fc7e8d commit c6fb14a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,13 @@ public class ModuleDefinition implements IDefinition {
/**
* Constructor.
*
* @param name Name of module.
* @param location {@link Location} of the module definition.
* @param name Name of module.
* @param product Name of product.
* @param baseVersion Base version.
* @param currentVersion Current version.
* @param description Description.
* @param requireds List of requireds modules.
*/
public ModuleDefinition(
final @Nullable Location location,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,16 @@ public class ProductDefinition implements IDefinition {
/**
* Constructor.
*
* @param location
* @param name
* @param version
* @param versionComment
* @param location Location of definition.
* @param name Name of product.
* @param parent Name of parent product.
* @param version Version.
* @param versionComment Version comment.
* @param title Title.
* @param description Description.
* @param requireds List of requireds products.
*/
public ProductDefinition(
public ProductDefinition( // NOSONAR
final @Nullable Location location,
final @Nullable Instant timestamp,
final String name,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -327,11 +327,11 @@ private Collection<TypeString> getParents(final ITypeStringDefinition definition
/**
* Get the parents of a {@link TypeString}.
*
* <p>This add the implicit parents, where {@link ExemplarDefinition} only returns its explicitly
* <p>This adds the implicit parents, where {@link ExemplarDefinition} only returns its explicitly
* defined parents.
*
* @param typeString
* @return
* @param typeString {@link TypeString} to get parents from.
* @return Parents of the given type.
*/
public Collection<TypeString> getParents(final TypeString typeString) {
// TODO: This can be multiple.
Expand Down

0 comments on commit c6fb14a

Please sign in to comment.