Skip to content

Commit

Permalink
Don't initialize an instance or static variable to its default value
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Oct 27, 2023
1 parent 968d553 commit 373018b
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -206,13 +206,13 @@ public Optional<IRI> getSourceIri() {
return Optional.ofNullable(sourceIri);
}

private RDF rdfTermFactory = null;
private RDFSyntax contentTypeSyntax = null;
private String contentType = null;
private IRI base = null;
private InputStream sourceInputStream = null;
private Path sourceFile = null;
private IRI sourceIri = null;
private RDF rdfTermFactory;
private RDFSyntax contentTypeSyntax;
private String contentType;
private IRI base;
private InputStream sourceInputStream;
private Path sourceFile;
private IRI sourceIri;
private Consumer<Quad> target;
private Dataset targetDataset;
private Graph targetGraph;
Expand Down

0 comments on commit 373018b

Please sign in to comment.