Skip to content

Commit

Permalink
chore: make sure copyright period is current.
Browse files Browse the repository at this point in the history
  • Loading branch information
drcgjung committed Apr 17, 2024
1 parent c8b4ac1 commit e415784
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022,2023 Contributors to the Eclipse Foundation
// Copyright (c) 2022,2024 Contributors to the Eclipse Foundation
//
// See the NOTICE file(s) distributed with this work for additional
// information regarding copyright ownership.
Expand Down Expand Up @@ -150,6 +150,7 @@ public Invocation(RemotingSailConnection connection) {
*
* @param binding value to convert
* @param target class to convert to
* @param strip an optional suffix to strip from the result
* @return converted value
*/
public static <TARGET> TARGET convertToObject(Value binding, Class<TARGET> target, String strip) throws SailException {
Expand Down Expand Up @@ -403,6 +404,7 @@ public Value convertOutputToValue(Object target, String resultKey, IRI output) t
}
}
}
// support nested output as json object for complex result types
String outputString = output.stringValue();
String path = null;
String dataType = "https://json-schema.org/draft/2020-12/schema#Object";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022,2023 Contributors to the Eclipse Foundation
// Copyright (c) 2022,2024 Contributors to the Eclipse Foundation
//
// See the NOTICE file(s) distributed with this work for additional
// information regarding copyright ownership.
Expand Down Expand Up @@ -545,6 +545,9 @@ public void meet(Slice node) throws SailException {
throw new SailException(String.format("No support for %s", node));
}

/**
* implements the actual preparation/binding and invocation/execution of triple based API calls
*/
@Override
public void meet(StatementPattern statement) throws SailException {
if (bindings.isEmpty()) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022,2023 Contributors to the Eclipse Foundation
// Copyright (c) 2022,2024 Contributors to the Eclipse Foundation
//
// See the NOTICE file(s) distributed with this work for additional
// information regarding copyright ownership.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022,2023 Contributors to the Eclipse Foundation
// Copyright (c) 2022,2024 Contributors to the Eclipse Foundation
//
// See the NOTICE file(s) distributed with this work for additional
// information regarding copyright ownership.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022,2023 Contributors to the Eclipse Foundation
// Copyright (c) 2022,2024 Contributors to the Eclipse Foundation
//
// See the NOTICE file(s) distributed with this work for additional
// information regarding copyright ownership.
Expand Down

0 comments on commit e415784

Please sign in to comment.