Skip to content

Commit

Permalink
added //NOSONAR comment for false positive
Browse files Browse the repository at this point in the history
  • Loading branch information
fasseg committed Jun 5, 2013
1 parent 63c2cf0 commit 8c8b9e4
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -68,7 +68,7 @@ public List<String> retrieveUris(String parentUri) throws IOException {
.createResource(parentUri));
final List<String> uris = new ArrayList<>();
while (stmts.hasNext()) {
Statement st = stmts.next();
Statement st = stmts.next(); //NOSONAR
uris.add(st.getSubject().getURI());
}
return uris;
Expand Down Expand Up @@ -99,7 +99,7 @@ public List<DatastreamFixityResult> requestFixityChecks(
throw new IOException("No fixity information available for " +
uri);
}
Statement st = sts.next();
Statement st = sts.next(); //NOSONAR
final Resource res = st.getObject().asResource();

/* parse the checksum from the model */
Expand Down

0 comments on commit 8c8b9e4

Please sign in to comment.