Skip to content

Commit

Permalink
fix javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
arendd committed Feb 8, 2022
1 parent 7b5dd14 commit 4c573c2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class GeneralValidation {
* {@link Assay}
*
* @param investigation the {@link Investigation} to check
* @return <code>true<code> if the validation was successful
* @return <code>true</code> if the validation was successful
*
*/
public static boolean validateInvestigationFile(Investigation investigation) {
Expand All @@ -42,7 +42,7 @@ public static boolean validateInvestigationFile(Investigation investigation) {
* Test if the given {@link Study} is linked to an {@link Investigation}
*
* @param study the {@link Study} to check
* @return <code>true<code> if the validation was successful
* @return <code>true</code> if the validation was successful
*/
public static boolean validateStudyFile(Study study) {
if (study.getInvestigation() == null)
Expand All @@ -54,7 +54,7 @@ public static boolean validateStudyFile(Study study) {
* Test if the given {@link Assay} is linked to a {@link Study}
*
* @param assay the {@link Assay} to check
* @return <code>true<code> if the validation was successful
* @return <code>true</code> if the validation was successful
*/
public static boolean validateAssayFile(Assay assay) {
if (assay.getStudy() == null)
Expand Down

0 comments on commit 4c573c2

Please sign in to comment.