Skip to content

Commit

Permalink
Cosmetic update; changed order of arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
Aklakan committed Mar 13, 2024
1 parent e63e574 commit 64d6d9a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,6 @@ public class CmdSparqlIntegrateMain
@ArgGroup(exclusive = true, multiplicity = "0..1")
public OutputSpec outputSpec;

@Option(names = { "--iriasgiven" }, arity="0", description = "Use an alternative IRI() implementation that is non-validating but fast")
public boolean useIriAsGiven = false;

public static class OutputSpec {
/**
* sparql-pattern file
Expand All @@ -157,6 +154,9 @@ public static class OutputSpec {
public String inOutFile = null;
}

@Option(names = { "--iriasgiven" }, arity="0", description = "Use an alternative IRI() implementation that is non-validating but fast")
public boolean useIriAsGiven = false;

@Option(names = { "-d", "--used-prefixes" }, description = "Number of records (bindings/quads) by which to defer RDF output in order to analyze used prefixes; default: ${DEFAULT-VALUE}", defaultValue = "100")
public long usedPrefixDefer;

Expand Down

0 comments on commit 64d6d9a

Please sign in to comment.