Skip to content

Commit e522435

Browse files
committed
Fixed more NPEs
1 parent 34af59e commit e522435

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/main/java/com/atomgraph/linkeddatahub/resource/acl

src/main/java/com/atomgraph/linkeddatahub/resource/acl/Access.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public Response get(@QueryParam(QUERY) Query unused,
124124
ParameterizedSparqlString typePss = getDocumentTypeQuery();
125125
typePss.setParams(thisQsm);
126126

127-
ResultSetRewindable docTypesResult = getEndpointAccessor().select(typePss.asQuery(), null, null);
127+
ResultSetRewindable docTypesResult = getEndpointAccessor().select(typePss.asQuery(), List.of(), List.of());
128128
try
129129
{
130130
final ParameterizedSparqlString authPss = getACLQuery();

0 commit comments

Comments
 (0)