Joshua Taylor

Results 7 issues of Joshua Taylor

In 5.2.0, the documentation for NetcdfFile.findVariable says: > Find a Variable, with the specified (escaped full) name.It may possibly be nested in multiple groups and/or structures.An embedded "." is interpreted...

ver5

### Current Behavior This code: ```java String prepare(final String unprepared) { final MapBindingSet mbs = new MapBindingSet(); mbs.addBinding("iri", Values.iri("https://www.youtube.com/watch?v=dQw4w9WgXcQ")); return QueryStringUtil.getGraphQueryString(unprepared, mbs); } ``` yields these results: ```java System.out.println(prepare("DESCRIBE ?iri"));...

🐞 bug

### Current Behavior ```java Prefix foo = SparqlBuilder.prefix("foo", Rdf.iri("http://example.org/foo/")); Prefix bar = SparqlBuilder.prefix("bar", foo.iri("bar/")); System.out.println(Queries.SELECT().prefix(foo, bar).getQueryString()); ``` produces the malformed SPARQL query: ```sparql PREFIX foo: PREFIX bar: foo:bar/ SELECT *...

🐞 bug

## Description Generating schemas for classes that have double-valued fields annotated with @JsonSchemaExamples annotation causes an exception to be thrown. For instance, schema generation for this class with an int-valued...

The README.md mentions that (emphasis added), "[the] plugin executes the Jdepend library (packaged within the plugin) during the execution of the SonarQube scanner to scan the binaries, so **no extra...

# Summary The `@SuppressFBWarnings(value = "ABCDE", justification = "...")` suppresses warnings for all rules whose names begin with `ABCDE`, not just the rule `ABCDE`. This is a problem because because...

I'm seeing some different behavior in SpotBugs 4.9.2 after upgrading from 4.9.1 (via maven-spotbugs-plugin 4.9.2.0 and 4.9.2.0. I actually tried using 4.9.3.0, where I first saw the problem, and then...