Skip to content

Commit 4c6fb7f

Browse files
bactgoneall
authored andcommitted
Remove extra "-" at the beginning of the param description
Signed-off-by: Arthit Suriyawongkul <arthit@gmail.com>
1 parent ca73f38 commit 4c6fb7f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/main/java/org/spdx/core/CoreModelObject.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public abstract class CoreModelObject {
102102

103103
/**
104104
* Create a new Model Object using an Anonymous ID with the default store and default document URI
105-
* @param specVersion - version of the SPDX spec the object complies with
105+
* @param specVersion version of the SPDX spec the object complies with
106106
* @throws InvalidSPDXAnalysisException on any SPDX related exception
107107
*/
108108
protected CoreModelObject(String specVersion) throws InvalidSPDXAnalysisException {
@@ -185,7 +185,7 @@ public boolean isExternal() {
185185

186186
/**
187187
* @param builder base builder to create the CoreModelObject from
188-
* @param specVersion - version of the SPDX spec the object complies with
188+
* @param specVersion version of the SPDX spec the object complies with
189189
* @throws InvalidSPDXAnalysisException on any SPDX related exception
190190
*/
191191
protected CoreModelObject(CoreModelObjectBuilder builder, String specVersion) throws InvalidSPDXAnalysisException {

src/main/java/org/spdx/core/ModelObjectHelper.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ private ModelObjectHelper() {
4848
* @param objectUri the Object URI or anonymous ID
4949
* @param propertyDescriptor property descriptor for the property
5050
* @param copyManager if non null, any ModelObject property value not stored in the modelStore under the stDocumentUri will be copied to make it available
51-
* @param specVersion - version of the SPDX spec the object complies with
51+
* @param specVersion version of the SPDX spec the object complies with
5252
* @param type optional type hint - used for individuals where the type may be ambiguous
5353
* @param idPrefix prefix to be used when generating new SPDX IDs
5454
* @return value associated with a property
@@ -184,7 +184,7 @@ public static void removePropertyValueFromCollection(IModelStore modelStore, Str
184184
* @param modelStore ModelStore to use in fetching or creating
185185
* @param copyManager if not null, copy any referenced ID's outside of this
186186
* document/model store
187-
* @param specVersion - version of the SPDX spec the object complies with
187+
* @param specVersion version of the SPDX spec the object complies with
188188
* @param type optional type hint - used for individuals where the type may be ambiguous
189189
* @param idPrefix Prefix to be used if any new object URI's are generated
190190
* @return the object itself unless it is a TypedValue, in which case a
@@ -251,7 +251,7 @@ public static Object modelObjectToStoredObject(Object value, IModelStore modelSt
251251
* @param modelStore ModelStore to use in fetching or creating
252252
* @param copyManager if not null, copy any referenced ID's outside of this
253253
* document/model store
254-
* @param specVersion - version of the SPDX spec the object complies with
254+
* @param specVersion version of the SPDX spec the object complies with
255255
* @param type optional type hint - used for individuals where the type may be ambiguous
256256
* @param idPrefix Prefix to be used if any new object URI's are generated
257257
* @return the object itself unless it is a TypedValue, in which case a

src/main/java/org/spdx/core/ModelSet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public class ModelSet<T extends Object> extends ModelCollection<Object> implemen
4747
* @param propertyDescriptor descriptor for the property use for the model collections
4848
* @param copyManager if non-null, use this to copy properties when referenced outside this model store
4949
* @param type The class of the elements to be stored in the collection if none, null if not known
50-
* @param specVersion - version of the SPDX spec the object complies with
50+
* @param specVersion version of the SPDX spec the object complies with
5151
* @param idPrefix prefix to be used when generating new SPDX IDs
5252
* @throws InvalidSPDXAnalysisException on parsing or store errors
5353
*/

0 commit comments

Comments
 (0)