diff options
author | pdragosh <pd1248@att.com> | 2022-08-02 12:21:24 -0500 |
---|---|---|
committer | Pamela Dragosh <pd1248@att.com> | 2022-08-03 15:24:39 +0000 |
commit | f851847420df0a524fd65a6dd2c190d41ccaff44 (patch) | |
tree | 5cd0b7c10fc87f31147ebc7b959b4674b3b48d33 /common-parameters | |
parent | b5ea6ef739a59d17c907d5a7233d2af0ed24526f (diff) |
Upgrade to oparent 3.2.1
Fixed new checkstyle issues.
Issue-ID: POLICY-4211
Change-Id: Id4567c7d416dcb92a96521793dd6dcad4035cd72
Signed-off-by: pdragosh <pd1248@att.com>
Diffstat (limited to 'common-parameters')
-rw-r--r-- | common-parameters/src/main/java/org/onap/policy/common/parameters/GroupValidationResult.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/common-parameters/src/main/java/org/onap/policy/common/parameters/GroupValidationResult.java b/common-parameters/src/main/java/org/onap/policy/common/parameters/GroupValidationResult.java index 1fe560d8..3438bb08 100644 --- a/common-parameters/src/main/java/org/onap/policy/common/parameters/GroupValidationResult.java +++ b/common-parameters/src/main/java/org/onap/policy/common/parameters/GroupValidationResult.java @@ -1,7 +1,7 @@ /*- * ============LICENSE_START======================================================= * Copyright (C) 2018 Ericsson. All rights reserved. - * Modifications Copyright (C) 2018-2019 AT&T Intellectual Property. All rights reserved. + * Modifications Copyright (C) 2018-2019,2022 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -77,7 +77,7 @@ public class GroupValidationResult extends CommonGroupValidationResult { * Construct a validation result for a field, updating "this" status. * * @param field The parameter field - * @param ParameterGroup The parameter group containing the field + * @param parameterGroup The parameter group containing the field * @return the validation result * @throws Exception on accessing private fields */ @@ -92,7 +92,7 @@ public class GroupValidationResult extends CommonGroupValidationResult { * Construct a validation result for a field. * * @param field The parameter field - * @param ParameterGroup The parameter group containing the field + * @param parameterGroup The parameter group containing the field * @return the validation result * @throws Exception on accessing private fields */ @@ -136,7 +136,7 @@ public class GroupValidationResult extends CommonGroupValidationResult { * Get the value of a field in an object using a getter found with reflection. * * @param targetObject The object on which to read the field value - * @param fieldName The name of the field + * @param field The name of the field * @return The field value */ private Object getObjectField(final Object targetObject, final Field field) { |