From 315e6610fd4bf8df5df02d8008011a9a8334d7de Mon Sep 17 00:00:00 2001 From: hvub Date: Thu, 28 Nov 2024 13:16:57 +0100 Subject: [PATCH] spotless apply --- core/src/main/java/apoc/load/LoadJson.java | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/core/src/main/java/apoc/load/LoadJson.java b/core/src/main/java/apoc/load/LoadJson.java index 478bea69c..75bbe9680 100644 --- a/core/src/main/java/apoc/load/LoadJson.java +++ b/core/src/main/java/apoc/load/LoadJson.java @@ -112,13 +112,14 @@ public Stream json( @Procedure(name = "apoc.load.jsonParams", deprecatedBy = "This procedure is being moved to APOC Extended.") @Deprecated @QueryLanguageScope(scope = {QueryLanguage.CYPHER_5}) - @Description("Loads a JSON document from a URL (e.g. web-API) as a stream of values if the given JSON document is a `LIST`.\n" - + "If the given JSON file is a `MAP`, this procedure imports a single value instead.") + @Description( + "Loads a JSON document from a URL (e.g. web-API) as a stream of values if the given JSON document is a `LIST`.\n" + + "If the given JSON file is a `MAP`, this procedure imports a single value instead.") public Stream jsonParams( @Name( value = "urlOrKeyOrBinary", - description = "The name of the file or binary data to import the data from. " + - "Note that a URL needs to be properly encoded to conform with the URI standard.") + description = "The name of the file or binary data to import the data from. " + + "Note that a URL needs to be properly encoded to conform with the URI standard.") Object urlOrKeyOrBinary, @Name(value = "headers", description = "Headers to be used when connecting to the given URL.") Map headers, @@ -127,9 +128,10 @@ public Stream jsonParams( @Name( value = "path", defaultValue = "", - description = "A JSON path expression used to extract specific subparts of the JSON document " + - "(extracted by a link:https://en.wikipedia.org/wiki/JSONPath[JSONPath] expression). " + - "The default is: ``.") + description = + "A JSON path expression used to extract specific subparts of the JSON document " + + "(extracted by a link:https://en.wikipedia.org/wiki/JSONPath[JSONPath] expression). " + + "The default is: ``.") String path, @Name( value = "config",