Skip to content

Commit 50e8fac

Browse files
committed
Removed stray new lines
1 parent 7d38ec6 commit 50e8fac

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/v1/internal/http/http-data-converter.js

-7
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,7 @@ export default class HttpDataConverter {
7171
* @return {object[][]} raw records from the response.
7272
*/
7373
extractRawRecords(response) {
74-
7574
const result = extractResult(response);
76-
77-
7875
if (result) {
7976
const data = result.data;
8077
if (data) {
@@ -153,8 +150,6 @@ function extractResult(response) {
153150
}
154151

155152
function extractRawRecord(data) {
156-
157-
158153
const row = data.row;
159154

160155
const nodesById = indexNodesById(data);
@@ -208,8 +203,6 @@ function indexRelationshipsById(data) {
208203
}
209204

210205
function extractRawRecordElement(index, data, nodesById, relationshipsById) {
211-
212-
213206
const element = data.row ? data.row[index] : null;
214207
const elementMetadata = data.meta ? data.meta[index] : null;
215208

0 commit comments

Comments
 (0)