Skip to content

Commit

Permalink
Issue #1980 - formatting
Browse files Browse the repository at this point in the history
Signed-off-by: John T.E. Timm <johntimm@us.ibm.com>
  • Loading branch information
JohnTimm committed Mar 23, 2021
1 parent d7bdc20 commit ae51b1e
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,11 @@ private Property createProperty(Map<Object, Object> elementMap) {
}

private GraphTraversal<Vertex, Vertex> filterNotApplied(Filter filter, GraphTraversal<Vertex, Vertex> g) {
log.log(Level.WARNING, String.format("Filter not applied - property: %s, op: %s, value: %s", filter.getProperty().getValue(), filter.getOp().getValue(), filter.getValue().getValue()));
log.log(Level.WARNING,
String.format("Filter not applied (property: %s, op: %s, value: %s)",
filter.getProperty().getValue(),
filter.getOp().getValue(),
filter.getValue().getValue()));
return g;
}

Expand Down

0 comments on commit ae51b1e

Please sign in to comment.