Skip to content

Commit 592b6e6

Browse files
authored
Merge pull request #48 from bact/remove-exception-not-thrown
Javadoc: Remove exceptions not thrown
2 parents f97fe60 + 4913955 commit 592b6e6

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/main/java/org/spdx/spreadsheetstore/AbstractSheet.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,6 @@ public Collection<Checksum> strToChecksums(String checksumsString) throws Spread
396396
* @param value A checksum string, formatted with the algorithm.
397397
* @return A {@link Checksum} object created from the input string.
398398
* @throws SpreadsheetException on errors parsing the checksum.
399-
* @throws InvalidSPDXAnalysisException on errors creating the {@link Checksum} object.
400399
*/
401400
public Checksum parseChecksum(String value) throws SpreadsheetException {
402401
Matcher matcher = CHECKSUM_PATTERN.matcher(value.trim());

src/main/java/org/spdx/spreadsheetstore/ExternalRefsSheet.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,6 @@ public void add(String packageId, ExternalRef externalRef) throws SpreadsheetExc
205205
*
206206
* @param referenceType
207207
* @return
208-
* @throws InvalidSPDXAnalysisException
209208
*/
210209
protected String refTypeToString(ReferenceType referenceType) {
211210
String retval;
@@ -294,8 +293,6 @@ public List<ExternalRef> getExternalRefsForPkgid(String id) throws SpreadsheetEx
294293
* name, a URI string, or a local name.
295294
* @return A {@link ReferenceType} object corresponding to the input string, or {@code null} if
296295
* the string is not a valid reference type.
297-
* @throws InvalidSPDXAnalysisException If there is an error creating the {@link ReferenceType}
298-
* object.
299296
*/
300297
protected ReferenceType stringToRefType(String refTypeStr) {
301298
ReferenceType refType = null;

0 commit comments

Comments
 (0)